@@ -28,37 +28,37 @@ protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
28
28
protected override void ConfigureSubscriptionStorage ( EntityTypeBuilder < PersistedSubscription > builder )
29
29
{
30
30
builder . ToTable ( "Subscription" , "wfc" ) ;
31
- builder . Property ( x => x . PersistenceId ) . UseSqlServerIdentityColumn ( ) ;
31
+ builder . Property ( x => x . PersistenceId ) . UseIdentityColumn ( ) ;
32
32
}
33
33
34
34
protected override void ConfigureWorkflowStorage ( EntityTypeBuilder < PersistedWorkflow > builder )
35
35
{
36
36
builder . ToTable ( "Workflow" , "wfc" ) ;
37
- builder . Property ( x => x . PersistenceId ) . UseSqlServerIdentityColumn ( ) ;
37
+ builder . Property ( x => x . PersistenceId ) . UseIdentityColumn ( ) ;
38
38
}
39
39
40
40
protected override void ConfigureExecutionPointerStorage ( EntityTypeBuilder < PersistedExecutionPointer > builder )
41
41
{
42
42
builder . ToTable ( "ExecutionPointer" , "wfc" ) ;
43
- builder . Property ( x => x . PersistenceId ) . UseSqlServerIdentityColumn ( ) ;
43
+ builder . Property ( x => x . PersistenceId ) . UseIdentityColumn ( ) ;
44
44
}
45
45
46
46
protected override void ConfigureExecutionErrorStorage ( EntityTypeBuilder < PersistedExecutionError > builder )
47
47
{
48
48
builder . ToTable ( "ExecutionError" , "wfc" ) ;
49
- builder . Property ( x => x . PersistenceId ) . UseSqlServerIdentityColumn ( ) ;
49
+ builder . Property ( x => x . PersistenceId ) . UseIdentityColumn ( ) ;
50
50
}
51
51
52
52
protected override void ConfigureExetensionAttributeStorage ( EntityTypeBuilder < PersistedExtensionAttribute > builder )
53
53
{
54
54
builder . ToTable ( "ExtensionAttribute" , "wfc" ) ;
55
- builder . Property ( x => x . PersistenceId ) . UseSqlServerIdentityColumn ( ) ;
55
+ builder . Property ( x => x . PersistenceId ) . UseIdentityColumn ( ) ;
56
56
}
57
57
58
58
protected override void ConfigureEventStorage ( EntityTypeBuilder < PersistedEvent > builder )
59
59
{
60
60
builder . ToTable ( "Event" , "wfc" ) ;
61
- builder . Property ( x => x . PersistenceId ) . UseSqlServerIdentityColumn ( ) ;
61
+ builder . Property ( x => x . PersistenceId ) . UseIdentityColumn ( ) ;
62
62
}
63
63
}
64
64
}
0 commit comments