SqlSugar/SqlSugar/Abstract/SqlBuilderProvider/DMLBuilder/SqlableQueryBuilder.cs
sunkaixuan 3363b2aa91 Ok
2017-01-07 21:54:51 +08:00

68 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SqlSugar
{
public class SqlableQueryBuilder : IDMLBuilder
{
public SqlBuilderProvider BuilderConext
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
public SqlSugarClient Conext
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
public StringBuilder Sql
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
public string SqlTemplate
{
get
{
throw new NotImplementedException();
}
}
public void Clear()
{
throw new NotImplementedException();
}
public string ToSqlString()
{
throw new NotImplementedException();
}
}
}