实体框架动态映射
我有一个我无法控制的 EntityAttributeValue 数据库。为了获取数据,我使用存储过程,如下所示。
public class PhotoDataContext : DbContext, IPhotoDataContext
{
public IEnumerable<PhotoRegistration> GetPhotoRegistration()
{
return this.Database.SqlQuery<PhotoRegistration>("SP_Photo") ;
}
}
当 POCO 映射完美时,这非常有效。现在我有一个可以返回动态字段的存储过程。所有字段都是字符串类型。
我正在使用 EF 4.1 Code First 并通过 WCF 将 POCO 传递到 Silverlight。 任何关于如何停止 EF 自动映射并将数据转换回 WCF 乐意序列化的名称值对的想法。
谢谢 J
I have a EntityAttributeValue database that I have no control over. To get the data I use a stored proc as follows.
public class PhotoDataContext : DbContext, IPhotoDataContext
{
public IEnumerable<PhotoRegistration> GetPhotoRegistration()
{
return this.Database.SqlQuery<PhotoRegistration>("SP_Photo") ;
}
}
This works fine for when the POCO maps perfectly. Now I have a stored procedure that can return dynamic fields. All fields are of string type.
I am using EF 4.1 Code First and am passing the POCO's to Silverlight via WCF.
Any ideas how to stop the auto mapping of EF and to pivot the data back into a name value pair that WCF will be happy to serialize.
Thanks
J
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 ADO.NET =
SqlConnection
、SqlCommand
、SqlDataReader
(如果您不使用 SQL Server,则使用等效项)。实体框架不喜欢动态结果集。Use ADO.NET =
SqlConnection
,SqlCommand
,SqlDataReader
(or equivalent if you don't use SQL Server). Entity framework doesn't like dynamic result sets.