2025-04-21 14:10:27 +08:00

59 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
}
}