我正在尝试构建一个工厂类,它将为我提供不同 DbContexts 的单例化实例。
主要思想是拥有一个Dictionary<Type,DbContext>
可以容纳我需要的所有实例的GetDbContext(Type type)
方法,以及一个在字典中查找类型并在它已经存在时返回它的方法。如果不是,它应该创建一个新的 Type(),并将其添加到相应的字典中。
我不知道该怎么做contexts.Add(type, new type());
public class DbContextFactory
{
private readonly Dictionary<Type, DbContext> _contexts;
private static DbContextFactory _instance;
private DbContextFactory()
{
_contexts= new Dictionary<Type, DbContext>();
}
public static DbContextFactory GetFactory()
{
return _instance ?? (_instance = new DbContextFactory());
}
public DbContext GetDbContext(Type type)
{
if (type.BaseType != typeof(DbContext))
throw new ArgumentException("Type is not a DbContext type");
if (!_contexts.ContainsKey(type))
_contexts.Add(type, new type()); //<--THIS is what I have now Idea how to do
return _contexts[type];
}
}