31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
|
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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|