Skip to content

Commit 4ba5e24

Browse files
committed
Fixed compilation issue
1 parent caccc8d commit 4ba5e24

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/EntityFrameworkCore.Triggered.IntegrationTests/ApplicationDbContext.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@
88

99
namespace EntityFrameworkCore.Triggered.IntegrationTests
1010
{
11-
public class ApplicationDbContext : TriggeredDbContext
11+
public class ApplicationDbContext
12+
#if EFCORETRIGGERED1
13+
: TriggeredDbContext
14+
#else
15+
: DbContext
16+
#endif
1217
{
1318
readonly string _databaseName;
1419

0 commit comments

Comments
 (0)