csharp 片段 - 1207858307.cs

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 片段 - 1207858307.cs相关的知识,希望对你有一定的参考价值。

static void Init(LazyContext db)
{
    db.Database.ExecuteSqlCommand("delete from Products; delete from Categories"); // delete old data

    var iphone = new Product { Name = "iPhone", Price = 6000000 };
    var lumia = new Product { Name = "lumia", Price = 9000000 };

    db.Products.Add(iphone);
    db.Products.Add(lumia);

    db.SaveChanges(); // save to generate product id

    var phone = new Category { Name = "Phone", Products = new List<Product> { iphone, lumia } };
    db.Categories.Add(phone);

    db.SaveChanges(); // save category
}

以上是关于csharp 片段 - 1207858307.cs的主要内容,如果未能解决你的问题,请参考以下文章

csharp 测试片段

csharp c#test片段

csharp Epicor标准练习片段

csharp 代码片段

csharp .net片段

csharp 片段 - 2930086830.cs