实体框架CTP5:如何使用C#连接MySql数据库?

发布于 2024-10-17 21:37:12 字数 725 浏览 0 评论 0 原文

我正在尝试从一个简单的项目使用实体框架 CTP5。 现在我添加了对 EntityFramework.dll (CTP5) 的引用 然后编写一些代码。但现在我无法使用它:

如何使用 C# 连接 MySql 数据库?

现在我创建了:

public class EF5_DATABASE : DbContext
{
    public DbSet<Sistema.Clientes.Cliente> Clientes { get; set; }
}

但以下代码不起作用:

EF5_DATABASE db = new EF5_DATABASE();
db.Database.Connection = ERP.MyConnection;   // MyConnection is a connected MySqlConnection

它抛出此编译器错误:

    Error  8   Property or indexer 'System.Data.Entity.Database.DbDatabase.Connection' cannot be assigned to -- it is read only
    C:\inetpub\wwwroot\temp\WpfApplicationTEST\MainWindow.xaml.cs   48  13  WpfApplicationTEST

I am trying to use Entity Framework CTP5, from a simple project.
for now i added the reference to EntityFramework.dll (CTP5)
and then write some code. But now i am unable to use it:

How to connect MySql database using C# ?

for now i created:

public class EF5_DATABASE : DbContext
{
    public DbSet<Sistema.Clientes.Cliente> Clientes { get; set; }
}

but the following code is not working:

EF5_DATABASE db = new EF5_DATABASE();
db.Database.Connection = ERP.MyConnection;   // MyConnection is a connected MySqlConnection

it throws this compiler error:

    Error  8   Property or indexer 'System.Data.Entity.Database.DbDatabase.Connection' cannot be assigned to -- it is read only
    C:\inetpub\wwwroot\temp\WpfApplicationTEST\MainWindow.xaml.cs   48  13  WpfApplicationTEST

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜未央樱花落 2024-10-24 21:37:12

我们编写了 文章 说明 dotConnect for MySQL 中 EF CTP 5 Code First 支持的某些方面
希望这篇文章会对您有所帮助。

We have written an article illustrating some aspects of EF CTP 5 Code First support in dotConnect for MySQL.
Hope this article will be helpful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文