@@ -42,11 +42,11 @@ public class ReadModelSqlGenerator : IReadModelSqlGenerator
42
42
private static readonly ConcurrentDictionary < Type , IReadOnlyCollection < PropertyInfo > > PropertyInfos = new ConcurrentDictionary < Type , IReadOnlyCollection < PropertyInfo > > ( ) ;
43
43
private static readonly ConcurrentDictionary < Type , string > IdentityColumns = new ConcurrentDictionary < Type , string > ( ) ;
44
44
private static readonly ConcurrentDictionary < Type , string > VersionColumns = new ConcurrentDictionary < Type , string > ( ) ;
45
- private readonly Dictionary < Type , string > _insertSqls = new Dictionary < Type , string > ( ) ;
46
- private readonly Dictionary < Type , string > _purgeSqls = new Dictionary < Type , string > ( ) ;
47
- private readonly Dictionary < Type , string > _deleteSqls = new Dictionary < Type , string > ( ) ;
48
- private readonly Dictionary < Type , string > _selectSqls = new Dictionary < Type , string > ( ) ;
49
- private readonly Dictionary < Type , string > _updateSqls = new Dictionary < Type , string > ( ) ;
45
+ private readonly ConcurrentDictionary < Type , string > _insertSqls = new ConcurrentDictionary < Type , string > ( ) ;
46
+ private readonly ConcurrentDictionary < Type , string > _purgeSqls = new ConcurrentDictionary < Type , string > ( ) ;
47
+ private readonly ConcurrentDictionary < Type , string > _deleteSqls = new ConcurrentDictionary < Type , string > ( ) ;
48
+ private readonly ConcurrentDictionary < Type , string > _selectSqls = new ConcurrentDictionary < Type , string > ( ) ;
49
+ private readonly ConcurrentDictionary < Type , string > _updateSqls = new ConcurrentDictionary < Type , string > ( ) ;
50
50
51
51
public ReadModelSqlGenerator ( )
52
52
{
0 commit comments