该MiniProfiler网站给出了生成实体框架下面的代码ObjectContext
:
public static MyModel Get()
{
var conn = new StackExchange.Profiling.Data.EFProfiledDbConnection(GetConnection(), MiniProfiler.Current);
return ObjectContextUtils.CreateObjectContext<MyModel>(conn); // resides in the MiniProfiler.EF nuget pack
}
然而,使用实体框架5,我没有使用的ObjectContext
-而我使用的是DbContext
。 我不能在这里插入的型号名称,由于CreateObjectContext<T>()
方法期望T
为类型ObjectContext
。 (出于同样的原因,在给定的代码这个答案也不起作用)。
此外,我使用autofac初始化我的数据库连接。 这是正在注册具有以下( MyData
=我EF的DataContext的名称):
Builder.RegisterType<MyData>().As<DbContext>().InstancePerHttpRequest();
因此,结合两个部分:我该如何使用autofac初始化我的DbContext扎成MiniProfiler.EF? 如果这是不可能的,至少我该怎么办的第一部分(创建一个工厂方法MiniProfiler.EF返回一个DbContext
)?
有一个构造函数中的DbContext
类将现有DbConnection
所以,你需要在你的一个新的构造器MyData
这只是调用基
public class MyData : DbContext
{
public MyData(DbConnection existingConnection, bool contextOwnsConnection)
: base(existingConnection, contextOwnsConnection)
{
}
//..
}
然后您注册MyData
与Register
:
builder.Register(c =>
{
var conn = new EFProfiledDbConnection(GetConnection(), MiniProfiler.Current);
return new MyData(conn, true);
}).As<DbContext>().InstancePerHttpRequest();
我刚刚得到这个工作:
public static class DbContextUtils
{
private const BindingFlags PrivateInstance = BindingFlags.NonPublic | BindingFlags.Instance;
public static T CreateDbContext<T>() where T : DbContext
{
return CreateDbContext<T>(GetProfiledConnection<T>());
}
public static T CreateDbContext<T>(this DbConnection connection) where T : DbContext
{
var workspace = new MetadataWorkspace(new[] { "res://*/" }, new[] { typeof(T).Assembly });
var factory = DbProviderServices.GetProviderFactory(connection);
var itemCollection = workspace.GetItemCollection(DataSpace.SSpace);
var providerFactoryField = itemCollection.GetType().GetField("_providerFactory", PrivateInstance);
if (providerFactoryField != null) providerFactoryField.SetValue(itemCollection, factory);
var ec = new EntityConnection(workspace, connection);
return CtorCache<T, DbConnection>.Ctor(ec);
}
public static DbConnection GetProfiledConnection<T>() where T : DbContext
{
var dbConnection = ObjectContextUtils.GetStoreConnection("name=" + typeof(T).Name);
return new EFProfiledDbConnection(dbConnection, MiniProfiler.Current);
}
internal static class CtorCache<TType, TArg> where TType : class
{
public static readonly Func<TArg, TType> Ctor;
static CtorCache()
{
var argTypes = new[] { typeof(TArg) };
var ctor = typeof(TType).GetConstructor(argTypes);
if (ctor == null)
{
Ctor = x => { throw new InvalidOperationException("No suitable constructor defined"); };
}
else
{
var dm = new DynamicMethod("ctor", typeof(TType), argTypes);
var il = dm.GetILGenerator();
il.Emit(OpCodes.Ldarg_0);
il.Emit(OpCodes.Newobj, ctor);
il.Emit(OpCodes.Ret);
Ctor = (Func<TArg, TType>)dm.CreateDelegate(typeof(Func<TArg, TType>));
}
}
}
}
它是基于代码MiniProfiler的ObjectContextUtils
。
您可以使用这样的:
builder.Register(c => DbContextUtils.CreateDbContext<MyData>()).As<DbContext>().InstancePerHttpRequest();
这种解决方案需要你DbContext
有一个构造函数,需要DbConnection
并把它传递给基础,就像这样:
public MyData(DbConnection connection)
: base(connection, true)
{
}