实体框架 EF4 复杂类型
在 EF4 中,如何使导入的函数返回不是由设计器生成的复杂类型?
所以我在项目中的某个地方有一个自定义类,我希望存储的过程结果作为此类返回。
How in EF4 can I make an imported function return a complex type, which is not generated by the designer?
So I have a custom class somewhere in my project and I want the stored proc result to be return as this class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 EF 返回的每个类都必须是设计器和底层映射的“一部分”。如果您在项目中的某处定义类而不在 EDMX 中建模,则 EF 将不知道在执行函数时如何具体化对象。
Each class returned from EF must be "part" of designer and underlaying mapping. If you define class somewhere in your project without modeling in EDMX, EF will not know how to materialize object when function is executed.