views:

57

answers:

3

Hi Guys,

Can we build ASP.NET MVC based on MYSQL database?

if yes, is there any article availabe?

thanks

+2  A: 

asp.net MVC doesn't force you to use any specific kind of data access. You can use any database you want, provided you have a way to access it from .NET of course.
I doubt you will find an interesting article specifically about using mySql in an MVC application, but there must be a lot of stuff about mySQL in .NET in general.

Stephane
+2  A: 

ASP.NET MVC doesn't imply any data access mechanism, you can use ADO.NET, LINQ-2-SQL, Entity Framework or open-source ORM frameworks like NHibernate, SubSonic etc. with MVC apps. The good news is that most data access libraries/frameworks for .NET support MySQL.

Buu Nguyen