示例#1
0
 internal Key(FieldType type, int oid)
 {
     this.type      = type;
     ival           = oid;
     this.inclusion = 1;
 }
示例#2
0
文件: Key.cs 项目: kjk/volante
 internal Key(FieldType type, int oid)
 {
     this.type = type;
     ival = oid;
     this.inclusion = 1;
 }
示例#3
0
 internal Key(FieldType type, bool inclusive)
 {
     this.type      = type;
     this.inclusion = inclusive ? 1 : 0;
 }
示例#4
0
文件: Key.cs 项目: kjk/volante
 internal Key(FieldType type, bool inclusive)
 {
     this.type = type;
     this.inclusion = inclusive ? 1 : 0;
 }