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