如何修复动态数据中的类型名称冲突
我们正在开发一个动态数据项目,该项目将处理来自两个不同命名空间的实体:myModel.Abby 和 myModel.Ben。
其类是:
Abby
myModel.Abby.Car
myModel.Abby.Lollipop
Ben
myModel.Ben.Car
myModel.Ben.Apple
所以 myModel.Abby.Car
和 myModel.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为没有办法解决这个问题。
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?
以下是 MSDN 的解决方法
希望它对其他人有帮助。 :)
Here is a workaround from MSDN
Hope it helps others. : )