update wiki

This commit is contained in:
28810
2019-01-23 16:41:11 +08:00
parent 4bf8d60361
commit b83b86f528
5 changed files with 57 additions and 17 deletions

View File

@ -10,6 +10,8 @@ using System.Reflection;
public static class FreeSqlGlobalExtensions {
public static FreeSql.ISelect<T> Queryable<T>(this IFreeSql freesql) where T : class => freesql.Select<T>();
static Lazy<Dictionary<Type, bool>> dicIsNumberType = new Lazy<Dictionary<Type, bool>>(() => new Dictionary<Type, bool> {
[typeof(sbyte)] = true,
[typeof(short)] = true,