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 Answers
You need MySQL ADO.NET provider. Download it, and try learning by looking at the examples. They're pretty straightforward.
2 Comments
Ognjen
where can I found these examples
Pablo Santa Cruz
Download the ADO.NET provider for MySQL. It comes with a couple of examples.
There are several LINQ providers for MySQL, such as DbLinq (FOSS) and LightSpeed (commercial).
2 Comments
Ognjen
whether the DbLinq can make dbml file of tables from server explorer
Marcelo Cantos
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.