码迷,mamicode.com
首页 > 其他好文 > 详细

EntityFramework 6 Tips

时间:2020-07-16 11:45:43      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:work   pre   tips   ber   web app   form   cat   products   package   

When working with Web applications, use a context instance per request.

Install-Package EntityFramework -Version

using System.Data.Entity;
public class Category{}
public class Product{}
public class ProductContext : DbContext
{
    public DbSet<Category> Categories { get; set; }
    public DbSet<Product> Products { get; set; }
}

public void UseProducts()
{
    using (var context = new ProductContext())
    {     
        // Perform data access using the context
    }
}

EntityFramework 6 Tips

标签:work   pre   tips   ber   web app   form   cat   products   package   

原文地址:https://www.cnblogs.com/dalianliyan/p/13320787.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!