Esempio n. 1
0
 public DbRelation(int?fromId, string identifier, int?toId, DbRelationType relationType, int?sortNum)
     : this(fromId, identifier, toId)
 {
     SortNum      = sortNum;
     RelationType = relationType;
 }
Esempio n. 2
0
 public DbRelation(int?fromId, string identifier, int?toId, DbRelationType relationType)
     : this(fromId, identifier, toId)
 {
     RelationType = relationType;
 }
Esempio n. 3
0
 public DbRelation(int? fromId, string identifier, int? toId, DbRelationType relationType)
     : this(fromId, identifier, toId)
 {
     RelationType = relationType;
 }
Esempio n. 4
0
 public DbRelation(int? fromId, string identifier, int? toId, DbRelationType relationType, int? sortNum)
     : this(fromId, identifier, toId)
 {
     SortNum = sortNum;
     RelationType = relationType;
 }
Esempio n. 5
0
 private static string AsValueNullable(DbRelationType? value)
 {
     return value != null ? ((int) value).ToString() : "NULL";
 }