我在 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 循环中,然后对其进行排序并插入三个应用程序,而不是我一个一个地对它们进行编码。