Keyword not supported: 'port' error in ASP.NET MVC application
I'm trying to create an API server, and I need to have access to MySQL database. I have this piece of code: public static class Database { private const string ConnectionString = "Server=localhost;Port=3306;Database=contoso_inc;Uid=root;Pwd=f6e527xp;"; public static IEnumerable<User> Execute(string query) { using…