如何在 EF 4.1 中插入 ID
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我很想作为 这个问题的重复项来关闭,但是从文本中并不清楚您是否想要一个始终由您的代码创建的属性,或者只是有时(就像该问题中的那样)
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)