如何首先在实体框架代码中获取自动递增值

发布于 2024-12-11 15:25:51 字数 280 浏览 0 评论 0原文

我首先使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

相思碎 2024-12-18 15:25:51

执行插入后,查看 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文