csharp 将用户添加到调查中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 将用户添加到调查中相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using Telerik.ILS.Data.Common.Repositories;
using Telerik.ILS.Data.Models;
using Telerik.ILS.Services.Common.CodeExecutor;

public class RunThisCode
{
    public void Execute(IRepository<Survey> surveys, IRepository<User> users, IWriter writer)
    {
        var surveyId = 33;
        var usernames = new List<string>()
        {
            "users"
        };

        var survey = surveys.GetById(surveyId);

        foreach (var username in usernames)
        {
            var user = users.All().FirstOrDefault(x => x.Username == username);
            survey.UsersInSurveys.Add(new UsersInSurvey() { User = user });
        }

        //surveys.SaveChanges();
    }
}

以上是关于csharp 将用户添加到调查中的主要内容,如果未能解决你的问题,请参考以下文章

如何将值返回到数组

csharp 将脚本添加到pdf

csharp 将事件日志记录添加到UserAudit表

csharp 将Webhooks添加到Azure Data Factory

csharp 使用Entity Framework将数据添加到表中。

csharp 将“Move to Top”和“Move to Bottom”项添加到组件的检查器上下文菜单中。