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ループで囲み、3つのアプリケーションを1つずつコーディングするのではなく、シーケンスして挿入する方法はありますか?