私は、コード最初使用してモデルを作成し、App.configファイルにパスワードを格納することなく接続することはできません、私の代わりにDbContextのコンストラクタに渡します私のDbContextのDbSet取得する:Entity FrameworkのMySQLのDbContextは
using (TasksWithoutPasswordContext contextWithoutPassword = new TasksWithoutPasswordContext(connectionString))
{
foreach (var user in contextWithoutPassword.users)
{
MessageBox.Show(user.user);
}
}
Additional information: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server).
を私は次のように私のクラスをマークしてみました:
[DbConfigurationType(typeof(MySql.Data.Entity.MySqlEFConfiguration))]
public class TasksWithoutPasswordContext : DbContext
それは役に立たなかった。
接続文字列を表示できますか?あなたのパスワードに**** –
と記入してください。エラーが表示されましたか?これが正しい接続文字列であり、サーバーが動作しているかどうかを確認しましたか? –
@Matthias Burger、server = localhost;ユーザID = test_user1;パスワード= ****;データベース= tasks_for_consultants –