old_flsystem/类库/SqlSugar/Interface/IDMLBuilder.cs

18 lines
394 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SqlSugar
{
public partial interface IDMLBuilder
{
string SqlTemplate { get; }
List<SugarParameter> Parameters { get; set; }
SqlSugarClient Context { get; set; }
StringBuilder sql { get; set; }
string ToSqlString();
void Clear();
}
}