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 TableInfos = new List(); public static string GetConfigValue(this object field) { throw new NotSupportedException("Can only be used in expressions"); } public static string GetConfigValue(this object field,string uniqueCode) { throw new NotSupportedException("Can only be used in expressions"); } public static FieldType SelectAll(this FieldType field) { throw new NotSupportedException("Can only be used in expressions"); } public static FieldType SelectAll(this FieldType field,string singleTableQueryShortName) { throw new NotSupportedException("Can only be used in expressions"); } } }