12

私は、EF の起動時間の遅さの大部分は、データベースからプロバイダー情報を取得することに関連している可能性があることを発見しました。これは、統合テストを実行したり、他の反復開発を行ったりするときに非常に厄介です。プロバイダー情報の取得が遅い理由、またはそれに対して何ができるかを誰か説明できますか? EF5を使用しています。

この動作を示す例を次に示します。

void Main()
{
    Database.SetInitializer<ModelDbContext>(null);
    Database.SetInitializer<ModelCreatingDbContext>(null);

    // passing the provider information in is very fast
    var sw2 = Stopwatch.StartNew();
    var builder = new DbModelBuilder();
    builder.Entity<SqlConnectionStringBuilder>().HasKey(c => c.ConnectionString).ToTable("strings");
    var q2 = new ModelDbContext(builder.Build(new DbProviderInfo("System.Data.SqlClient", "2008")).Compile()).Set<SqlConnectionStringBuilder>().Take(1).ToString();
    Console.WriteLine(sw2.Elapsed); // < 1 second

    // letting EF determine it from the connection string is sometimes very slow
    var sw1 = Stopwatch.StartNew();
    var q = new ModelCreatingDbContext().Set<SqlConnectionStringBuilder>().Take(1).ToString();
    Console.WriteLine(sw1.Elapsed); // can be upwards of 13 seconds!

}

public class ModelDbContext : DbContext {
    public static readonly string Connection = // connection string here

    public ModelDbContext(DbCompiledModel model) 
        : base(Connection, model) { }
}

public class ModelCreatingDbContext : DbContext {
    public ModelCreatingDbContext() : base(ModelDbContext.Connection) { }

    protected override void OnModelCreating(DbModelBuilder builder) {
        builder.Entity<SqlConnectionStringBuilder>().HasKey(c => c.ConnectionString).ToTable("strings");

        base.OnModelCreating(builder);
    }
}
4

0 に答える 0