• Quick note - the problem with Youtube videos not embedding on the forum appears to have been fixed, thanks to ZiprHead. If you do still see problems let me know.

Entity Framework and MySQL (C# question)

So, I want to use the Entity Framework. The problem is that Microsoft doesn't allow integration on VS 2012 Express with that and MySQL and I super don't have 471.99 + tax.

Is there anyway to do that? Or do I need to give up using it?

I've not used Entity Framework, and haven't tried to use it from VS Express, but I don't see anything specifically which prevents you from referencing the EF dlls, creating your entities + mappings by hand, initializing the db context, and writing the migration/seed scripts if you need them. Its not a lot of work, and fairly minimal to write by hand. Also a good way to learn about the guts of EF instead of trusting the tool to do it all for you.

Are you getting a more specific error when you try to use EF from VS Express? If you end up fighting Entity Framework, NHibernate is a good alternative.
 
Last edited:

Back
Top Bottom