コード例 #1
0
 public Data4IdentityAttribute(Data4IdentityType type)
 {
     this.ColumnType = this.ColumnType | Data4ColumnType.Identity;
     IdentityType    = type;
 }
コード例 #2
0
 public Data4PrimaryKeyAttribute(Data4IdentityType type)
 {
     this.ColumnType = this.ColumnType | Data4ColumnType.PrimaryKey;
 }
コード例 #3
0
 public Data4IdentityAttribute()
 {
     this.ColumnType = this.ColumnType | Data4ColumnType.Identity;
     IdentityType    = Data4IdentityType.Database;
 }