How can I use Linq with a MySql database on Mono?

前端 未结 6 2253
你的背包
你的背包 2021-01-02 05:01

There are numerous libraries providing Linq capabilities to C# code interacting with a MySql database. Which one of them is the most stable and usable on Mono?

Backg

6条回答
  •  旧时难觅i
    2021-01-02 05:42

    LINQ to SQL is simply a ORM layer leveraging the power of expressions to make it easy to construct queries in your code.

    If you are just calling adhoc queries for your tool, there is little need to use LINQ, it just adds an extra layer of abstraction to your code.

提交回复
热议问题