18 lines
394 B
C#
18 lines
394 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|