添加数值搜索 - AddIQueryItemSearchLongStrText +
2017-02-19 11:00:40 访问(1588) 赞(0) 踩(0)
/// <summary>
/// 添加数值搜索 - AddIQueryItemSearchLongStrText +
/// </summary>
/// <param name="_info"></param>
/// <param name="theValue"></param>
public void AddIQueryItemSearchLongStrText
(
EntityFieldInfo _info,
string theValue
)
{
if (theValue == null || theValue.Length == 0)
return;
long oValue = long.Parse(theValue);
this.AddIQueryItemWithEntityFieldInfo
(
_info,
oValue
);
}
/// <summary>
/// 添加数值搜索 - AddIQueryItemSearchLongStrText +
/// </summary>
/// <param name="_info"></param>
/// <param name="_emSqlLink"></param>
/// <param name="theValue"></param>
public void AddIQueryItemSearchLongStrText
(
EntityFieldInfo _info,
SlowX.Core.Enums.SqlLink.EmSqlLink _emSqlLink,
string theValue
)
{
if (theValue == null || theValue.Length == 0)
return;
long oValue = long.Parse(theValue);
this.AddIQueryItemWithEntityFieldInfo
(
_info,
_emSqlLink,
oValue
);
}
标签:
添加数值搜索 - AddIQueryItemSearchLongStrText + 


上一条:
下一条:
相关评论
发表评论