How do I connect to a SQL database from C#?

后端 未结 8 1365
-上瘾入骨i
-上瘾入骨i 2020-12-02 19:06

I am trying to write a local program management and install system for my home network, and I think I\'ve got the technologies nailed down:

  • C#/.NET/WPF for the
8条回答
  •  温柔的废话
    2020-12-02 20:07

    Currently the easiest way to connect to your database and perform queries in C# is LinqToSQL. It will save you a lot of headache as compared to using "old-school" ADO connections.

提交回复
热议问题