コード例 #1
0
ファイル: PrimaryKey.cs プロジェクト: henzio79/asmin
 public PrimaryKey(string name, string value, DbFieldType type, DbSearchType pDbSearchTypeKey)
 {
     this.Name          = name;
     this.Value         = value;
     this.Type          = type;
     this.SearchTypeKey = pDbSearchTypeKey;
 }
コード例 #2
0
ファイル: PrimaryKey.cs プロジェクト: henzio79/asmin
 public PrimaryKey(string name, string value)
 {
     this.Name          = name;
     this.Value         = value;
     this.Type          = DbFieldType.Text;
     this.SearchTypeKey = DbSearchType.Equal;
 }