public MongoSQL Where(string field, BsonValue value, bool useNULL) { if ((value.IsNull() || value == BsonNull.Value) && !useNULL) { return(this); } query[field] = value; return(this); }
public MongoSQL Where(string field, BsonValue value, bool useNULL) { if ((value.IsNull() || value == BsonNull.Value) && !useNULL) return this; query[field] = value; return this; }