Is there anything built into .Net or visual studio that will allow my to create classes based off of a MySql table. I guess I am talking about persistence. I just want the class to be a 1 to 1 mapping of the table. Does anything free exist?

link|improve this question

54% accept rate
feedback

6 Answers

You can use the Entity Framework for this. It connects well with MySQL. I've been following this tutorial: http://www.devart.com/dotconnect/mysql/articles/tutorial_ef.html

link|improve this answer
feedback

You could also use LINQ to SQL with MySQL. But then, you should research a bit to find the correct provider you'd have to install.

I think it pretty much has it covered here:

LINQ to MySQL

link|improve this answer
feedback

NHibernate can connect to MySQL and is Free:

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

link|improve this answer
feedback

Subsonic (open source) works with MySQL (5.0+) with special support for InnoDB -

http://subsonicproject.com/

link|improve this answer
feedback

I use NHibernate with MyGeneration

MyGeneration is a program that can read your database schema and generate code based on a template (in the case of NHibernate, the Entities and Mappings)

link|improve this answer
Lets not forget about Fluent - fluentnhibernate.org – Kris Krause Oct 14 '11 at 18:01
1  
@KrisKrause true, in fact I do use fluent, but i think OP is more interested in MyGeneration: [...]that will allow my to create classes based off of a MySql table – Andre Oct 14 '11 at 18:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.