59 lines
1.1 KiB
C#
59 lines
1.1 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace MyCode.Project.Infrastructure.Search
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Sql的查询符号
|
|||
|
/// </summary>
|
|||
|
public enum SqlOperator
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Like 模糊查询
|
|||
|
/// </summary>
|
|||
|
Like,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// = is equal to 等于号
|
|||
|
/// </summary>
|
|||
|
Equal,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// <> (≠) is not equal to 不等于号
|
|||
|
/// </summary>
|
|||
|
NotEqual,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// > is more than 大于号
|
|||
|
/// </summary>
|
|||
|
MoreThan,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// < is less than 小于号
|
|||
|
/// </summary>
|
|||
|
LessThan,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// ≥ is more than or equal to 大于或等于号
|
|||
|
/// </summary>
|
|||
|
MoreThanOrEqual,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// ≤ is less than or equal to 小于或等于号
|
|||
|
/// </summary>
|
|||
|
LessThanOrEqual,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 生成ADN IN('','')这种
|
|||
|
/// </summary>
|
|||
|
In,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// SQL语句
|
|||
|
/// </summary>
|
|||
|
Sql
|
|||
|
|
|||
|
}
|
|||
|
}
|