tags:

views:

198

answers:

2

I think JPA is nice and convenient ( not to mention standardising, as we used to have every individual programmer doing his/her own thing with a jdbc connection).

I would like to use something like jpa with C# to mysql and sqlserver.

+1  A: 

Entity Framework is what you should check out first. It is recommended by Microsoft.

Other popular options include NHibernate or DBLinq.

http://community.jboss.org/wiki/NHibernateforNET

http://code.google.com/p/dblinq2007/

Lex Li
+3  A: 

Isn't JPA just a Java ORM?

.NET has many ORM tools, namely

and plus my favourite

Rohan West
SubSonic also deserves to be in the list.
this. __curious_geek
Active Record is Castle Active Record and it sits on top of NHibernate. FluentNHibernate is another option that sits on top of NHibernate.
Michael Maddox