2

我在 C# 中有以下类:

public partial class Application
{
    public Application()
    {
        this.TestAccounts = new List<TestAccount>();
    }

    public int ApplicationId { get; set; }
    public string Name { get; set; }
    public byte[] RowVersion { get; set; }
    public System.DateTime ModifiedDate { get; set; }
    public virtual ICollection<TestAccount> TestAccounts { get; set; }
}

我想使用以下内容插入一些应用程序名称为“aa”、“bb”和“xx”的记录:

List<Application> applications;

public void seedData() {
    var a = new Application { Name = "xx" };
    applications.Add(a);
}

有没有一种方法可以将创建新应用程序记录的行包含在 for 循环中,然后对其进行排序并插入三个应用程序,而不是我一个一个地对它们进行编码。

4

6 回答 6

6

您可以为此使用 LINQ:

var names = new[] {"A", "B", "C"};
var apps = names.Select(x => new Application { Name = x });
applications.AddRange(apps);
于 2013-03-24T16:33:11.980 回答
3

如果我正确理解了这个问题,那么您的seedData()方法可能如下所示:

public void seedData()
{
    const string[] names = new string[] { "xx", "bb", "xx" };
    foreach (string name in names)
        applications.Add(new Application { Name = name });
}
于 2013-03-24T16:35:31.313 回答
2

您可以使用对象或集合初始化器

List<Application> applications = new List<Application>()
{ 
  new Application(){Name="aa"}, 
  new Application(){Name="bb"}, 
  new Application(){Name="xx"}
};

无需将应用程序名称存储在单独的数组中并循环对其进行初始化。
我还认为生成的代码更清晰。

于 2013-03-24T16:36:10.353 回答
1

如果您想使用for循环,这是一种方法:

var names = new List<string>(new string[] { "aa", "bb", "xx" });

for(int i = 0; i < 3; i++)
{
    var a = new Application { Name = names[i] };
    applications.Add(a);
}
于 2013-03-24T16:35:33.907 回答
1

您可以使用:

    public static IList<Application> CreatesApp(IEnumerable<string> names)
    {
      return names == null ? new List<Application>() : 
             names.Select(name => new Application() { Name = name }).ToList();
    }
于 2013-03-24T16:38:18.200 回答
0

使用线程。和 .join

例如创建一个创建线程并返回其引用的函数,即:createAppThread(Application app)

所以你的 for 循环可以是

//code from Cuong Le's answer
names = new[] {"A", "B", "C"};
for (int i=0;i<names.length();i++){
  Application app=new Application { Name = "xx" };//create your app object
  Thread th = createAppThread(app);
  Thread.join(th);

}

此方法可能会阻塞 ui 线程一段时间,但它会起作用。

于 2013-03-24T16:54:31.003 回答