摘要:
AutoMapper的集合转换用起来有点别扭,原因如下图 简单封装一下,使使用体验一致:(相同属性才拷贝) public class Mapper { public static D Map<S, D>(S src, List<string> ignoreProperties = null) whe 阅读全文
摘要:
services.Configure<Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerOptions>(options => {//414 uri too long options.Limits.MaxRequestLineSize = i 阅读全文
摘要:
查看输出窗口提示: 正在从 origin 提取正在推送 masterWarning: Pulling without specifying how to reconcile divergent branches isdiscouraged. You can squelch this message 阅读全文
摘要:
USE [数据库名称] GO ALTER DATABASE 数据库名称 SET RECOVERY SIMPLE WITH NO_WAIT GO DBCC SHRINKFILE (N'数据库名称_log' , 400, TRUNCATEONLY) GO DBCC SHRINKDATABASE(N'数据 阅读全文