コード例 #1
0
ファイル: DbRelation.cs プロジェクト: TimotejRybar/sdb
 public DbRelation(int?fromId, string identifier, int?toId, DbRelationType relationType, int?sortNum)
     : this(fromId, identifier, toId)
 {
     SortNum      = sortNum;
     RelationType = relationType;
 }
コード例 #2
0
ファイル: DbRelation.cs プロジェクト: TimotejRybar/sdb
 public DbRelation(int?fromId, string identifier, int?toId, DbRelationType relationType)
     : this(fromId, identifier, toId)
 {
     RelationType = relationType;
 }
コード例 #3
0
ファイル: DbRelation.cs プロジェクト: SorenHK/sdb
 public DbRelation(int? fromId, string identifier, int? toId, DbRelationType relationType)
     : this(fromId, identifier, toId)
 {
     RelationType = relationType;
 }
コード例 #4
0
ファイル: DbRelation.cs プロジェクト: SorenHK/sdb
 public DbRelation(int? fromId, string identifier, int? toId, DbRelationType relationType, int? sortNum)
     : this(fromId, identifier, toId)
 {
     SortNum = sortNum;
     RelationType = relationType;
 }
コード例 #5
0
ファイル: MySQLDataService.cs プロジェクト: SorenHK/sdb
 private static string AsValueNullable(DbRelationType? value)
 {
     return value != null ? ((int) value).ToString() : "NULL";
 }