实体框架和 MySql 存储过程

发布于 2024-12-17 18:08:51 字数 386 浏览 0 评论 0原文

我正在使用 Entity Framework 4.0、VS 2010、MySql 服务器数据库和 mysql-connector-net-6.4.4 进行连接。它工作得很好,也就是说,它可以很好地生成模型类、csdl、ssdl 等文件。但是,对于存储过程来说它不起作用。

发生的情况如下:

在模型浏览器中右键单击 SP,选择 [添加函数导入]。这打开了一个对话框 填写适当的值,例如函数导入名称、存储过程名称 单击[获取列信息]。这会导致该按钮底部填充一些网格。在网格中,有一个名为 [EDM Type] 的列。由于某些未知原因,此列显示[不支持]:( 现在,单击[创建新的复杂类型]。这一切顺利,没有错误 现在,单击“确定”按钮 完成上述所有步骤后,代码中没有创建复杂类型,这就是问题所在。

有人可以帮忙吗?

I am working with Entity Framework 4.0, VS 2010, MySql server database, and mysql-connector-net-6.4.4 for connection purpose. It works fine, that said, it can generate Model classes, csdl, ssdl etc files well. But, for stored procedures it doesn't work.

Here is what happens..

Right clicked on an SP from Model Browser, select [Add Function Import]. This opened a dialog box
Filled appropriate values like, Function Import Name, Stored Procedure Name
Click on [Get Column Information]. This results into some Grid filled up at the bottom of this button. In the grid, there is a column named [EDM Type]. This column shows [Not supported] due to some unknown reason :(
Now, clicked on [Create New Complex Type]. This goes OK, without Error
Now, clicked on OK button
After doing all above steps, there is no Complex Type created in the code however, which is the problem.

Can anyone please help?

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

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

发布评论

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

评论(1

西瓜 2024-12-24 18:08:51

生成的复杂类型位于模型浏览器模型部分的复杂类型文件夹中。

要在代码中访问 ti,请将其用作任何其他实体

MyComplexType ct = new MyComplexType();

,并且您可以将其用作存储过程的结果类型:

List<MyComplexType> info = ctx.GetAllEmployees().ToList<MyComplexType>();

您必须确保 GridView 的列映射与复杂类型匹配 的属性,或者 GridView 的属性 AutoGenerateColumns 设置为 true。

The generated Complex Type is in the Complex Types folder in the Model part of the Model Browser.

To access ti in code, use it as any other Entity

MyComplexType ct = new MyComplexType();

And you can use it as a result type for your stored procedure:

List<MyComplexType> info = ctx.GetAllEmployees().ToList<MyComplexType>();

You must ensure that the GridView's columns mappings match the Complex Type's properties, or that the GridView's property AutoGenerateColumns is set to true.

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