views:

42

answers:

2

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
whether the DbLinq can make dbml file of tables from server explorer
Ognjen
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
+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
where can I found these examples
Ognjen
Download the ADO.NET provider for MySQL. It comes with a couple of examples.
Pablo Santa Cruz