6

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
}

但是,使用 Entity Framework 5,我没有使用ObjectContext- 而是使用DbContext. 我无法在此处插入模型名称,因为该CreateObjectContext<T>()方法需要T类型为ObjectContext. (出于同样的原因,这个答案中给出的代码也不起作用)。

此外,我正在使用 autofac 来初始化我的 Db 连接。这是使用以下内容注册的(MyData=我的 EF DataContext 的名称):

Builder.RegisterType<MyData>().As<DbContext>().InstancePerHttpRequest();

所以结合两个部分:如何使用 autofac 来初始化绑定到 MiniProfiler.EF 的 DbContext?如果那不可能,至少我该怎么做第一部分(为 MiniProfiler.EF 创建工厂方法以返回 a DbContext)?

4

2 回答 2

11

我刚刚得到这个工作:

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有一个构造函数,该构造函数接受 aDbConnection并将其传递给 base,如下所示:

public MyData(DbConnection connection)
    : base(connection, true)
{
}
于 2012-11-21T17:05:59.523 回答
6

有一个类的构造函数DbContext它采用现有的DbConnection

所以你需要一个新的构造函数,它只MyData调用基础

public class MyData : DbContext
{
    public MyData(DbConnection existingConnection, bool contextOwnsConnection)
        : base(existingConnection, contextOwnsConnection)
    {
    }

    //..
}

然后你注册你MyDataRegister

builder.Register(c => 
{
   var conn =  new EFProfiledDbConnection(GetConnection(), MiniProfiler.Current);
   return new MyData(conn, true);
}).As<DbContext>().InstancePerHttpRequest();
于 2012-11-21T16:31:20.717 回答