使用具有相同存储过程名称的两个连接的实体框架问题
我的项目中有两个 edmx 文件,每个文件都访问具有相同名称的存储过程(两个不同的数据库)。我的问题是,用于存储模型的命名空间是项目的命名空间,而不是模型命名空间。
这会导致编译问题,因为它们被视为同一类。
关于如何使这些类对于模型来说是独一无二的,有什么想法吗?
我正在使用 Visual Web Developer Express (.net 4.0) 和 C# 访问 SQL Server 2005 后端。
谢谢。
I've got two edmx files in my project that each access a stored procedure with the same name (two different databases). My problem is that the namespace used for the storage model is the namespace of the project, not the Model Namespace.
This is causing compilation issues as they are seen as the same class.
Any ideas on how to make the classes unique to the model?
I'm using Visual Web Developer Express (.net 4.0) and C# accessing a SQL Server 2005 back-end.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们将每个模型放在自己的文件夹中以避免此问题。这会导致每个模型都有不同的命名空间。
We put each model in its own folder to avoid this problem. This results in a different namespace for each model.