How get data from mysql database? I use ASP.NET and C#.Previously, I used LINQ but it does not work with mysql database
+2
A:
There are several LINQ providers for MySQL, such as DbLinq (FOSS) and LightSpeed (commercial).
Marcelo Cantos
2010-04-13 22:03:05
whether the DbLinq can make dbml file of tables from server explorer
Ognjen
2010-04-13 22:14:55
There is a tool like sqlmetal for DbLinq. Off the top of my head, I don't know whether it has the same name or a different one.
Marcelo Cantos
2010-04-13 22:18:41
+2
A:
You need MySQL ADO.NET provider. Download it, and try learning by looking at the examples. They're pretty straightforward.
Pablo Santa Cruz
2010-04-13 22:14:43
Download the ADO.NET provider for MySQL. It comes with a couple of examples.
Pablo Santa Cruz
2010-04-14 00:09:36