sqlsugar/Src/OracleUS7ASCII/SqlSugar/ExpressionsToSql/DbMethods/SqlFuncExtendsion.cs

31 lines
1.0 KiB
C#
Raw Normal View History

2025-05-11 16:20:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
public static class SqlFuncExtendsion
{
internal static List<ConfigTableInfo> TableInfos = new List<ConfigTableInfo>();
public static string GetConfigValue<Type>(this object field)
{
throw new NotSupportedException("Can only be used in expressions");
}
public static string GetConfigValue<Type>(this object field,string uniqueCode)
{
throw new NotSupportedException("Can only be used in expressions");
}
public static FieldType SelectAll<FieldType>(this FieldType field)
{
throw new NotSupportedException("Can only be used in expressions");
}
public static FieldType SelectAll<FieldType>(this FieldType field,string singleTableQueryShortName)
{
throw new NotSupportedException("Can only be used in expressions");
}
}
}