mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
14 lines
316 B
C#
14 lines
316 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SqlSugar.Odbc
|
|
{
|
|
public class OdbcConfig
|
|
{
|
|
public static string SqlTranslationLeft ="";
|
|
public static string SqlTranslationRight="";
|
|
public static bool IsCompatibleWithOldDatabaseVersion = false;
|
|
}
|
|
}
|