实体框架动态映射

发布于 2024-11-27 22:41:22 字数 506 浏览 0 评论 0原文

我有一个我无法控制的 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 技术交流群。

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

发布评论

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

评论(1

梦毁影碎の 2024-12-04 22:41:22

使用 ADO.NET = SqlConnectionSqlCommandSqlDataReader(如果您不使用 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.

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