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?
|
feedback
|
|
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 | |||
|
feedback
|
|
there appears to be a way to get EntityFramework working with MySQL | |||
|
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: | |||
|
feedback
|
|
NHibernate can connect to MySQL and is Free: http://community.jboss.org/wiki/DatabasesSupportedByNHibernate | |||
|
feedback
|
|
Subsonic (open source) works with MySQL (5.0+) with special support for InnoDB - | |||
|
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) | |||||||
feedback
|