SqlSugar/SqlSugar/Interface/ISqlBuilder/IDMLBuilder.cs
sunkaixuan 1aa10dc302 -
2017-03-05 16:18:49 +08:00

17 lines
340 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SqlSugar
{
public partial interface IDMLBuilder
{
string SqlTemplate { get; }
SqlSugarClient Context { get; set; }
StringBuilder Sql { get; set; }
string ToSqlString();
void Clear();
}
}