I have a problem with Entity Framework in Asp.net I want to take ID value whenever I add a Object to database. How can I do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It is pretty easy. If you are using DB generated Ids (like IDENTITY in MS SQL) you just need to add entity to
Entity framework by default follows each INSERT with SELECT SCOPE_IDENTITY() when autogenerated Ids are used. |
|||||||||||
|
|
The object you're saving should have a correct |
|||
|
Please refer this link. http://www.ladislavmrnka.com/2011/03/the-bug-in-storegeneratedpattern-fixed-in-vs-2010-sp1/ You have to set the property of StoreGeneratedPattern to identity and then try your own code. |
|||
|
|
