EF 4.0 从 MetadataWorkspace 获取 EntitySetMappings

发布于 2024-10-20 18:34:14 字数 286 浏览 2 评论 0原文

我正在使用 EF 4.0,并且尝试从映射数据空间查询所有项目。

使用以下代码,

var item = this.MetadataWorkspace.GetItems<EdmType>(DataSpace.CSSpace);

我收到错误

“空间‘CSSpace’没有关联的集合”

最终我尝试从 edmx 文件查询 EntitySetMappings,以便我可以知道哪些 EntityTypes 映射到特定的 EntitySet...

I am using EF 4.0, and I am trying to query all the items from the mapping dataspace.

Using the following code,

var item = this.MetadataWorkspace.GetItems<EdmType>(DataSpace.CSSpace);

I get an error

'The space 'CSSpace' has no associated collection'

Eventually i am trying to query EntitySetMappings from the edmx file so i can know which EntityTypes are mapped to a particular EntitySet...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蛮可爱 2024-10-27 18:34:14

您需要强制加载SSpace。

string sql = ((System.Data.Objects.ObjectQuery)this.[AnyEntitySet]).ToTraceString();

有关更多信息,请查看强制要加载的 MetadataWorkspace ItemCollections

You need to force load the SSpace.

string sql = ((System.Data.Objects.ObjectQuery)this.[AnyEntitySet]).ToTraceString();

For more information take a look at Forcing MetadataWorkspace ItemCollections to load.

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