使用 Linq to Entities 加载部分实体
我正在尝试使用 Linq to Entities 加载部分实体:
Dim contacts = From c In My.Context.Contacts _
Select New Contact With { _
.ContactId = c.ContactId, _
.Name = c.Name
}
我尝试了它,但收到以下 NotSupportedException:“无法在 LINQ to Entities 查询中构造实体或复杂类型“CompleteKitchenModel.Contact”。”
谢谢
I am trying to load a partial entity with Linq to Entities:
Dim contacts = From c In My.Context.Contacts _
Select New Contact With { _
.ContactId = c.ContactId, _
.Name = c.Name
}
I tried it and I get the following NotSupportedException: "The entity or complex type 'CompleteKitchenModel.Contact' cannot be constructed in a LINQ to Entities query."
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用匿名类型:
然后将数据复制到联系人列表:
正如错误所示,不支持您的语法。
You'll have to use anonymous type:
and then copy data to Contact list:
Your syntax, as error says, is not supported.