如何为Entity Framework DBContext显式指定connectionstring

时间:2012-08-20 01:46:13

标签: asp.net asp.net-mvc entity-framework

我的BaseDBContext.cs默认使用BaseDBContext中的connectionstrings密钥。

如何明确设置要使用的密钥?即如果我希望它使用DefaultConnection而不是?

1 个答案:

答案 0 :(得分:4)

使用DbContext

this构造函数
public class BaseDBContext : DbContext
{
    public BaseDBContext()
        : base("DefaultConnection")
    {
    }
}