예제 #1
0
 public PrimaryKey(string name, string value, DbFieldType type, DbSearchType pDbSearchTypeKey)
 {
     this.Name          = name;
     this.Value         = value;
     this.Type          = type;
     this.SearchTypeKey = pDbSearchTypeKey;
 }
예제 #2
0
 public PrimaryKey(string name, string value)
 {
     this.Name          = name;
     this.Value         = value;
     this.Type          = DbFieldType.Text;
     this.SearchTypeKey = DbSearchType.Equal;
 }