Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does the Entity Framework 4 support generators for id values like NHibernate?

Does the Entity Framework 4 support generators for id values like NHibernate? NHibernate has generator classes to help with this.

like image 950
Samuel Goldenbaum Avatar asked Mar 09 '10 12:03

Samuel Goldenbaum


1 Answers

EF4 supports whatever the back-end server supports:

  • IDENTITY columns or GUID columns with default values (newid(), newsequentialid()) in SQL Server
  • Sequences in Oracle
  • whatever other mechanism the target database might provide

EF4 itself doesn't have any built-in support for generators of any kind, as far as I know.

I'm not sure if making this the ORM's responsibility is a good idea, quite honestly. This should really be left to the backend store to handle, in my opinion.

However, you should have no trouble implementing your own custom ID generator in .NET code, and plug that into EF4, if you wish to do so.

like image 170
marc_s Avatar answered Oct 09 '22 13:10

marc_s