Does MySQL work with ASP.NET web applications?
Yes, MS SQL 2005 (etc) is native to ASP.NET, but there are other reasons (such as swapping the front end to PHP and running on Linux) why MySQL maybe be a better choice.
If I were doing such development, I'd use PostgreSQL and the NPGSQL .NET data provider. PostgreSQL plays very nicely with .NET and Windows Server as well as with PHP, Python, and Linux.
Yeah, you can use MySQL with .NET and it works pretty well. You just have to to install the necessary assemblies and you can code in the same way as ADO.NET. I have implemented ASP.NET projects in the past with MYSQL databases.
If I were doing such development, I'd use PostgreSQL and the NPGSQL .NET data provider. PostgreSQL plays very nicely with .NET and Windows Server as well as with PHP, Python, and Linux.
Yeah, you can use MySQL with .NET and it works pretty well. You just have to to install the necessary assemblies and you can code in the same way as ADO.NET. I have implemented ASP.NET projects in the past with MYSQL databases.