File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/FluentNHibernate/Mapping Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public class VersionPart : IVersionMappingProvider
12
12
private readonly Type entity ;
13
13
private readonly Member property ;
14
14
private readonly AccessStrategyBuilder < VersionPart > access ;
15
- private readonly VersionGeneratedBuilder < IVersionMappingProvider > generated ;
15
+ private readonly VersionGeneratedBuilder < VersionPart > generated ;
16
16
private readonly AttributeStore < VersionMapping > attributes = new AttributeStore < VersionMapping > ( ) ;
17
17
private readonly AttributeStore < ColumnMapping > columnAttributes = new AttributeStore < ColumnMapping > ( ) ;
18
18
private readonly List < string > columns = new List < string > ( ) ;
@@ -23,13 +23,13 @@ public VersionPart(Type entity, Member property)
23
23
this . entity = entity ;
24
24
this . property = property ;
25
25
access = new AccessStrategyBuilder < VersionPart > ( this , value => attributes . Set ( x => x . Access , value ) ) ;
26
- generated = new VersionGeneratedBuilder < IVersionMappingProvider > ( this , value => attributes . Set ( x => x . Generated , value ) ) ;
26
+ generated = new VersionGeneratedBuilder < VersionPart > ( this , value => attributes . Set ( x => x . Generated , value ) ) ;
27
27
}
28
28
29
29
/// <summary>
30
30
/// Specify if this version is database generated
31
31
/// </summary>
32
- public VersionGeneratedBuilder < IVersionMappingProvider > Generated
32
+ public VersionGeneratedBuilder < VersionPart > Generated
33
33
{
34
34
get { return generated ; }
35
35
}
You can’t perform that action at this time.
0 commit comments