How to connect to MySQL Database?

后端 未结 6 1088
孤街浪徒
孤街浪徒 2020-11-22 11:36

I\'m very new to C# programming but would like to be able to access MySQL Databases (do not have the money for MS SQL)

However I have one question; I know you are re

6条回答
  •  野性不改
    2020-11-22 12:12

    you can use Package Manager to add it as package and it is the easiest way to do. You don't need anything else to work with mysql database.

    Or you can run below command in Package Manager Console

    PM> Install-Package MySql.Data
    

    NUGET Mysql.Data

提交回复
热议问题