在mvc .net中建立连接时出错(system.data.common.dbconnection)

时间:2017-11-15 15:05:16

标签: c# mysql asp.net asp.net-mvc asp.net-mvc-4

我是mvc的新用户并尝试使用mvc将我的mysql数据库连接到应用程序..

我的连接字符串是 -

import { FormsModule } from '@angular/forms';
imports: [
  ..
  FormsModule
]

this is my connection string

我在 MySql.Data.MySqlClient.MySqlCommand 中遇到错误 提前感谢您的帮助。

and this is the error that i am getting

1 个答案:

答案 0 :(得分:0)

您的连接字符串看起来不正确。要将EF连接到MySQL,您需要指定提供者:

[...] name="ConnectionString" providerName="MySql.Data.MySqlClient" [...]

对此question的回答可能会有所帮助,因为它详细说明了如何使用MySQL设置EF。