We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 072f014 commit 4a2a61fCopy full SHA for 4a2a61f
src/AbpCompanyName.AbpProjectName.EntityFramework/EntityFramework/AbpProjectNameDbContext.cs
@@ -32,10 +32,16 @@ public AbpProjectNameDbContext(string nameOrConnectionString)
32
}
33
34
//This constructor is used in tests
35
- public AbpProjectNameDbContext(DbConnection connection)
36
- : base(connection, true)
+ public AbpProjectNameDbContext(DbConnection existingConnection)
+ : base(existingConnection, false)
37
{
38
39
40
+
41
+ public AbpProjectNameDbContext(DbConnection existingConnection, bool contextOwnsConnection)
42
+ : base(existingConnection, contextOwnsConnection)
43
+ {
44
45
+ }
46
47
0 commit comments