mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-20 06:59:34 +08:00
16 lines
401 B
C#
16 lines
401 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 AccessBuilder : SqlBuilderProvider
|
|
{
|
|
public override string SqlTranslationLeft { get { return "["; } }
|
|
public override string SqlTranslationRight { get { return "]"; } }
|
|
}
|
|
}
|