如何先用entityframework数据库获取数据库信息?
当我使用实体框架代码优先时,我可以使用以下代码来获取数据库连接字符串:
var db = new dbContext();
Console.Writeline(db.Database.Connection.ConnectionString);
但是当我首先使用数据库时,数据库不可用。我如何(从运行时的代码)获取实体框架正在使用的数据库连接字符串?
When I use Entity Framework codefirst I can use the following code to get my database connection string:
var db = new dbContext();
Console.Writeline(db.Database.Connection.ConnectionString);
But when I do database first, Database is not available. How do I (from code at runtime) go about getting the database connection string that is being used by entity framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
代码:
始终有效。因此,如果您从数据库创建实体模型并使用 DbContext Generator T4 模板,您仍然可以使用它。
如果您使用 ObjectContext API,则必须调用此方法:
The code:
works always. So If you created entity model from your database and used DbContext Generator T4 template you can still use it.
If you instead used ObjectContext API you must call this:
...然后可以公开特定的连接字符串属性:
... And the specific connection string properties can then be exposed: