如何修复动态数据中的类型名称冲突

发布于 2024-08-27 03:29:46 字数 527 浏览 9 评论 0原文

我们正在开发一个动态数据项目,该项目将处理来自两个不同命名空间的实体:myModel.AbbymyModel.Ben

其类是:


Abby

myModel.Abby.Car

myModel.Abby.Lollipop

Ben

myModel.Ben.Car

myModel.Ben.Apple

所以 myModel.Abby.CarmyModel.Ben.Car 是同音异义词。 当我尝试注册两个 ObjectContext 时,会抛出一个异常,告诉我们上述类之间存在类型名称冲突(尽管这些类型属于不同的命名空间)。

如何克服不同命名空间之间重复的类型名称引起的类型名称冲突?

We're working in a Dynamic Data project that will handle entities coming from two different namespaces: myModel.Abby and myModel.Ben.

whose classes are:


Abby

myModel.Abby.Car

myModel.Abby.Lollipop

Ben

myModel.Ben.Car

myModel.Ben.Apple

So myModel.Abby.Car and myModel.Ben.Car are homonym.
when I try to register both ObjectContext's, an exception is thrown telling us that there are type name conflicts between the mentioned classes (although the types belong to different namespaces).

How can we overcome type-name conflicts, caused by repeated type names among different namespaces?

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

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

发布评论

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

评论(2

櫻之舞 2024-09-03 03:29:46

我认为没有办法解决这个问题。

DynamicData 根据类型名称路由到正确的表单。查看 URL,类型名称总是在上面的某个位置。 DD 如何知道您想要与哪种类型的人互动?

I don't think there is a way around this.

DynamicData routes to the correct forms based on type names. Look in the URL, the type name is always up there someplace. How can DD know which type you mean to interact with?

为你鎻心 2024-09-03 03:29:46

以下是 MSDN 的解决方法

问题是命名冲突
两种不同上下文中的类型之间。
为了解决这个问题,你可以重命名一个
指定的类
您实体上的 TableNameAttribute。

希望它对其他人有帮助。 :)

Here is a workaround from MSDN

The problem is a naming conflict
between types in 2 different contexts.
To get around this you can rename one
of the classes specifying the
TableNameAttribute on your entity.

Hope it helps others. : )

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