@@ -15,23 +15,23 @@ public ClassMapping()
1515 : this ( new AttributeStore ( ) )
1616 { }
1717
18- public IIdentityMapping Id => attributes . GetOrDefault < IIdentityMapping > ( "Id" ) ;
18+ public IIdentityMapping Id => attributes . GetOrDefault < IIdentityMapping > ( ) ;
1919
20- public NaturalIdMapping NaturalId => attributes . GetOrDefault < NaturalIdMapping > ( "NaturalId" ) ;
20+ public NaturalIdMapping NaturalId => attributes . GetOrDefault < NaturalIdMapping > ( ) ;
2121
22- public override string Name => attributes . GetOrDefault < string > ( "Name" ) ;
22+ public override string Name => attributes . GetOrDefault < string > ( ) ;
2323
24- public override Type Type => attributes . GetOrDefault < Type > ( "Type" ) ;
24+ public override Type Type => attributes . GetOrDefault < Type > ( ) ;
2525
26- public CacheMapping Cache => attributes . GetOrDefault < CacheMapping > ( "Cache" ) ;
26+ public CacheMapping Cache => attributes . GetOrDefault < CacheMapping > ( ) ;
2727
28- public VersionMapping Version => attributes . GetOrDefault < VersionMapping > ( "Version" ) ;
28+ public VersionMapping Version => attributes . GetOrDefault < VersionMapping > ( ) ;
2929
30- public DiscriminatorMapping Discriminator => attributes . GetOrDefault < DiscriminatorMapping > ( "Discriminator" ) ;
30+ public DiscriminatorMapping Discriminator => attributes . GetOrDefault < DiscriminatorMapping > ( ) ;
3131
32- public bool IsUnionSubclass => attributes . GetOrDefault < bool > ( "IsUnionSubclass" ) ;
32+ public bool IsUnionSubclass => attributes . GetOrDefault < bool > ( ) ;
3333
34- public TuplizerMapping Tuplizer => attributes . GetOrDefault < TuplizerMapping > ( "Tuplizer" ) ;
34+ public TuplizerMapping Tuplizer => attributes . GetOrDefault < TuplizerMapping > ( ) ;
3535
3636 public override void AcceptVisitor ( IMappingModelVisitor visitor )
3737 {
@@ -58,43 +58,43 @@ public override void AcceptVisitor(IMappingModelVisitor visitor)
5858 base . AcceptVisitor ( visitor ) ;
5959 }
6060
61- public string TableName => attributes . GetOrDefault < string > ( "TableName" ) ;
61+ public string TableName => attributes . GetOrDefault < string > ( ) ;
6262
63- public int BatchSize => attributes . GetOrDefault < int > ( "BatchSize" ) ;
63+ public int BatchSize => attributes . GetOrDefault < int > ( ) ;
6464
65- public object DiscriminatorValue => attributes . GetOrDefault < object > ( "DiscriminatorValue" ) ;
65+ public object DiscriminatorValue => attributes . GetOrDefault < object > ( ) ;
6666
67- public string Schema => attributes . GetOrDefault < string > ( "Schema" ) ;
67+ public string Schema => attributes . GetOrDefault < string > ( ) ;
6868
69- public bool Lazy => attributes . GetOrDefault < bool > ( "Lazy" ) ;
69+ public bool Lazy => attributes . GetOrDefault < bool > ( ) ;
7070
71- public bool Mutable => attributes . GetOrDefault < bool > ( "Mutable" ) ;
71+ public bool Mutable => attributes . GetOrDefault < bool > ( ) ;
7272
73- public bool DynamicUpdate => attributes . GetOrDefault < bool > ( "DynamicUpdate" ) ;
73+ public bool DynamicUpdate => attributes . GetOrDefault < bool > ( ) ;
7474
75- public bool DynamicInsert => attributes . GetOrDefault < bool > ( "DynamicInsert" ) ;
75+ public bool DynamicInsert => attributes . GetOrDefault < bool > ( ) ;
7676
77- public string OptimisticLock => attributes . GetOrDefault < string > ( "OptimisticLock" ) ;
77+ public string OptimisticLock => attributes . GetOrDefault < string > ( ) ;
7878
79- public string Polymorphism => attributes . GetOrDefault < string > ( "Polymorphism" ) ;
79+ public string Polymorphism => attributes . GetOrDefault < string > ( ) ;
8080
81- public string Persister => attributes . GetOrDefault < string > ( "Persister" ) ;
81+ public string Persister => attributes . GetOrDefault < string > ( ) ;
8282
83- public string Where => attributes . GetOrDefault < string > ( "Where" ) ;
83+ public string Where => attributes . GetOrDefault < string > ( ) ;
8484
85- public string Check => attributes . GetOrDefault < string > ( "Check" ) ;
85+ public string Check => attributes . GetOrDefault < string > ( ) ;
8686
87- public string Proxy => attributes . GetOrDefault < string > ( "Proxy" ) ;
87+ public string Proxy => attributes . GetOrDefault < string > ( ) ;
8888
89- public bool SelectBeforeUpdate => attributes . GetOrDefault < bool > ( "SelectBeforeUpdate" ) ;
89+ public bool SelectBeforeUpdate => attributes . GetOrDefault < bool > ( ) ;
9090
91- public bool Abstract => attributes . GetOrDefault < bool > ( "Abstract" ) ;
91+ public bool Abstract => attributes . GetOrDefault < bool > ( ) ;
9292
93- public string Subselect => attributes . GetOrDefault < string > ( "Subselect" ) ;
93+ public string Subselect => attributes . GetOrDefault < string > ( ) ;
9494
95- public string SchemaAction => attributes . GetOrDefault < string > ( "SchemaAction" ) ;
95+ public string SchemaAction => attributes . GetOrDefault < string > ( ) ;
9696
97- public string EntityName => attributes . GetOrDefault < string > ( "EntityName" ) ;
97+ public string EntityName => attributes . GetOrDefault < string > ( ) ;
9898
9999 public bool Equals ( ClassMapping other )
100100 {
0 commit comments