コード例 #1
0
ファイル: ClassMap.cs プロジェクト: alexmaris/Gribble
 public GuidKeyMapping(string propertyName, ClassMap <T> map) :
     base(propertyName, PrimaryKeyType.Guid, map)
 {
 }
コード例 #2
0
ファイル: ClassMap.cs プロジェクト: alexmaris/Gribble
 public IntegerKeyMapping(string propertyName, ClassMap <T> map) :
     base(propertyName, PrimaryKeyType.Integer, map)
 {
 }
コード例 #3
0
ファイル: ClassMap.cs プロジェクト: alexmaris/Gribble
 public KeyMapping(string propertyName, PrimaryKeyType type, ClassMap <T> map) :
     base(propertyName, map)
 {
     _type = type;
 }
コード例 #4
0
ファイル: ClassMap.cs プロジェクト: alexmaris/Gribble
 public DynamicMapping(string propertyName, ClassMap <T> map) : base(propertyName, map)
 {
 }
コード例 #5
0
ファイル: ClassMap.cs プロジェクト: alexmaris/Gribble
 public ColumnMapping(string propertyName, ClassMap <T> map) : base(propertyName, map)
 {
     Column(propertyName);
 }
コード例 #6
0
ファイル: ClassMap.cs プロジェクト: alexmaris/Gribble
 protected Mapping(string propertyName, ClassMap <T> map)
 {
     Map          = map;
     PropertyName = propertyName;
 }