该文被密码保护。 阅读全文
摘要:
方法一:命令安装 1.win+r 输入cmd 2.输入:cd \ 3.输入:服务地址url 空格 C:\Windows\Microsoft.NET\Framework\v2.0.50727(根据自己项目版本选择对应的)\InstallUtil.exe 空格 安装的服务名.exe -i 方法二:bat 阅读全文
摘要:
gosp_spaceused table select object_name(id),rows,rowcnt from sys.sysindexes where object_name(id) in ('table') 阅读全文
摘要:
https://converter.telerik.com/ 阅读全文
摘要:
public static class CacheHelper { #region 设置缓存容器 //缓存容器 private static Dictionary CacheDictionary = new Dictionary(); /// /// 添加缓存 /// ... 阅读全文
摘要:
public static class QueryableExtension { public static IOrderedQueryable<T> OrderBy<T>(this IQueryable<T> query, string propertyName) { return _OrderB 阅读全文