使用 C# 和存储库工厂并出现错误:配置中未定义请求的数据库?是什么原因造成的?
我正在将 Visual Studio 2008 的存储库工厂用于个人项目。 它生成了一个名为 ProductRepository
的类,该类继承自 Repository
。 ProductRepository
有一个构造函数,它以字符串形式获取数据库名称并将其传递到其基础(我的意思是 Repository
)。
当我尝试逐步调试我的项目时,我将数据库名称传递给 ProductRepository
但它会引发以下错误:
配置中未定义请求的数据库。
怎么了?
I am using Repository factory for visual studio 2008 for a personal project.
It generated a class called ProductRepository
which inherits from Repository<Product>
.
The ProductRepository
has a constructor which gets a database name as string and passes it to its base (I mean Repository<Product>
).
When I try to debug my project step by step, I pass my database name to ProductRepository
but it raises the following error:
The requested database is not defined in configuration.
What's wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想这意味着它与配置的连接字符串有关。检查你的配置。
I guess that means it has to do with the configured connectionstring. Check your config.