mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Update Odbc
This commit is contained in:
parent
dc96069dff
commit
ca6b714e70
@ -9,8 +9,8 @@ namespace SqlSugar.Odbc
|
|||||||
{
|
{
|
||||||
public class OdbcBuilder : SqlBuilderProvider
|
public class OdbcBuilder : SqlBuilderProvider
|
||||||
{
|
{
|
||||||
public override string SqlTranslationLeft { get { return ""; } }
|
public override string SqlTranslationLeft { get { return OdbcConfig.SqlTranslationLeft; } }
|
||||||
public override string SqlTranslationRight { get { return ""; } }
|
public override string SqlTranslationRight { get { return OdbcConfig.SqlTranslationRight; } }
|
||||||
public override string GetNoTranslationColumnName(string name)
|
public override string GetNoTranslationColumnName(string name)
|
||||||
{
|
{
|
||||||
return name;
|
return name;
|
||||||
|
12
Src/Asp.NetCore2/SqlSugar.OdbcCore/OdbcConfig.cs
Normal file
12
Src/Asp.NetCore2/SqlSugar.OdbcCore/OdbcConfig.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace SqlSugar.Odbc
|
||||||
|
{
|
||||||
|
public class OdbcConfig
|
||||||
|
{
|
||||||
|
public static string SqlTranslationLeft ="";
|
||||||
|
public static string SqlTranslationRight="";
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user