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