예제 #1
0
 public MongoSQL Where(string field, BsonValue value, bool useNULL)
 {
     if ((value.IsNull() || value == BsonNull.Value) && !useNULL)
     {
         return(this);
     }
     query[field] = value;
     return(this);
 }
예제 #2
0
파일: MongoSQL.cs 프로젝트: pczy/Pub.Class
 public MongoSQL Where(string field, BsonValue value, bool useNULL) {
     if ((value.IsNull() || value == BsonNull.Value) && !useNULL) return this;
     query[field] = value;
     return this;
 }