如何在 EF 4.1 中插入 ID

发布于 2024-12-13 19:28:57 字数 285 浏览 0 评论 0原文

我正在尝试使用 EF 4.1 进行一些应该相对容易的操作。我有一个像这样的类

class Entity 
{
   public int Id {get;set;}
   public string Name {get;set;}
}

Id 属性应该是数据库中的主键,这一切都有效。但是,当我插入具有给定 ID 的新实体时,EF4.1 会忽略该 ID 并创建一个新实体。所以我想要像identity_insert这样的东西?

问候, 马丁

I am trying something with EF 4.1 that should be relatively easy. I have a class like this

class Entity 
{
   public int Id {get;set;}
   public string Name {get;set;}
}

The Id property should be the primary key in the DB and this all works. But when I insert new entities with given IDs EF4.1 ignores the ID and creates a new one. So I would like something like identity_insert?

Greeting,
Martijn

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

兔姬 2024-12-20 19:28:57

我很想作为 这个问题的重复项来关闭,但是从文本中并不清楚您是否想要一个始终由您的代码创建的属性,或者只是有时(就像该问题中的那样)

I'm tempted to closed as a duplicate of this question, but it's not clear from the text if you want to have a property that is always created by your code, or just sometimes (as it is in that question)

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