如何首先在实体框架代码中获取自动递增值
我首先使用 Entity Framework 4.1 代码。我有一个产品表,其中的 Id 列是自动递增列。当我添加 Product 实例时,如何获取这个新 id 或更新的 Product(随属性一起返回)?
我的存储库代码:
MyContext db = new MyContext();
public void Insert(Product product)
{
db.Products.Add(product);
db.SaveChanges();
}
I am using Entity Framework 4.1 code first
. I have a product table that has an Id column that is an auto incremented column. When I add the the Product instance, how do I get this new id or the updated Product (returned with properties)?
My repository code:
MyContext db = new MyContext();
public void Insert(Product product)
{
db.Products.Add(product);
db.SaveChanges();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行插入后,查看
product.Id
属性(或任何您调用的 id 属性)。 EF 将使用数据库分配的值来更新它。After performing the insert look at the
product.Id
property (or whatever your id property is called). It will be updated by EF with the value assigned by the database.