mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-18 14:09:34 +08:00
16 lines
404 B
C#
16 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SqlSugar.Access
|
|
{
|
|
public class SqlServerBuilder : SqlBuilderProvider
|
|
{
|
|
public override string SqlTranslationLeft { get { return "["; } }
|
|
public override string SqlTranslationRight { get { return "]"; } }
|
|
}
|
|
}
|