You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
537 B
23 lines
537 B
namespace Kean.Infrastructure.Database
|
|
{
|
|
/// <summary>
|
|
/// Sql 查询
|
|
/// </summary>
|
|
public sealed class Query
|
|
{
|
|
/// <summary>
|
|
/// Sql 查询命令
|
|
/// </summary>
|
|
internal string Expression { get; set; }
|
|
|
|
/// <summary>
|
|
/// 命令参数
|
|
/// </summary>
|
|
internal Parameters Parameters { get; set; }
|
|
|
|
/// <summary>
|
|
/// 查询结果集是否包含项目
|
|
/// </summary>
|
|
public bool Contains(object item) => default;
|
|
}
|
|
}
|