实体框架和 MySql 存储过程
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
生成的
复杂类型
位于模型浏览器模型部分的复杂类型
文件夹中。要在代码中访问 ti,请将其用作任何其他实体
,并且您可以将其用作存储过程的结果类型:
您必须确保 GridView 的列映射与复杂类型匹配 的属性,或者
GridView
的属性AutoGenerateColumns
设置为 true。The generated
Complex Type
is in theComplex Types
folder in the Model part of the Model Browser.To access ti in code, use it as any other Entity
And you can use it as a result type for your stored procedure:
You must ensure that the
GridView
's columns mappings match theComplex Type
's properties, or that theGridView
's propertyAutoGenerateColumns
is set to true.