当前位置: 编程技术>.net/c#/asp.net
C#(4.0)不常见的语法
来源: 互联网 发布时间:2014-10-14
本文导语: :指定参数 代码如下: public DataTable TodayToTable(int userId) { return userId > 0 ? V_CN_TASK_VALID_SCORING_TODAY.QueryTable(condition: " WHERE 承接者Id = " + userId) : null; } 其中的condition: " WHERE 承接者Id = " + userId就是指定参数 condition是QueryTable方法的参...
:指定参数
public DataTable TodayToTable(int userId)
{
return userId > 0 ? V_CN_TASK_VALID_SCORING_TODAY.QueryTable(condition: " WHERE 承接者Id = " + userId) : null;
}
其中的condition: " WHERE 承接者Id = " + userId就是指定参数 condition是QueryTable方法的参数
///
/// 查询指定表的记录
///
/// 表名
/// 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();
代码如下:
public DataTable TodayToTable(int userId)
{
return userId > 0 ? V_CN_TASK_VALID_SCORING_TODAY.QueryTable(condition: " WHERE 承接者Id = " + userId) : null;
}
其中的condition: " WHERE 承接者Id = " + userId就是指定参数 condition是QueryTable方法的参数
代码如下:
///
/// 查询指定表的记录
///
/// 表名
/// 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();