示例#1
0
        public static JsonWhere Where(Type itemType, string condition, params object[] values)
        {
            var whereWhere = new JsonWhere(itemType);

            whereWhere.And(condition, values);
            return(whereWhere);
        }
示例#2
0
 public JsonCommand And(string condition, params object[] values)
 {
     _currentWhere?.And(condition, values);
     return(this);
 }