SqlSugar/Src/Asp.NetCore2/SqlSugar.OdbcCore/OdbcConfig.cs

14 lines
316 B
C#
Raw Permalink Normal View History

2024-04-01 18:06:09 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace SqlSugar.Odbc
{
public class OdbcConfig
{
public static string SqlTranslationLeft ="";
public static string SqlTranslationRight="";
2024-06-29 18:55:11 +08:00
public static bool IsCompatibleWithOldDatabaseVersion = false;
2024-04-01 18:06:09 +08:00
}
}