mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-18 17:48:11 +08:00
13 lines
311 B
C#
13 lines
311 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class SqliteBuilder : SqlBuilderProvider
|
|
{
|
|
public override string SqlTranslationLeft { get { return "`"; } }
|
|
public override string SqlTranslationRight { get { return "`"; } }
|
|
}
|
|
}
|