20 lines
400 B
C#
20 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class SqlServerQueryBuilder: QueryBuilder
|
|
{
|
|
public override string SqlTemplate
|
|
{
|
|
get
|
|
{
|
|
return "SELECT {0}{"+UtilConstants.ReplaceKey+"} FROM {1}{2}{3}{4}";
|
|
}
|
|
}
|
|
}
|
|
}
|