今天工作遇到4.0新增语法 不解 请教 遂知
:指定参数
public DataTable TodayToTable(int userId) { return userId > 0 ? V_CN_TASK_VALID_SCORING_TODAY.QueryTable(condition: " WHERE 承接者Id = " + userId) : null; }
////// 查询指定表的记录 /// /// 表名 /// SELECT 子句的字段名列表 /// 查询条件 /// 以半角逗号分隔的命令参数名称列表 /// 命令参数值数组(可选) ///查询结果 public static DataTable QueryTable(this string table, string fields = null, int? limit = null, string condition = null, string args = null, params object[] vals) { return GetTable(table.QueryDataSet(fields, limit, condition, args, vals), 0); }
var m_queryFields = fields.TrimNull() ?? "*";
等于
var m_queryFields = fields.TrimNull() ? "*":fields.TrimNull();