摘要:
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Console 阅读全文
摘要:
var input=new input(); var personList= new List(); //一个查询集合 var Total = personList.Count(s => s.AcceptStatus == input.AcceptStatus); //总记录数 //分页 var pagerList = personList.Where(s => s.AcceptSta... 阅读全文
摘要:
{"Exception":{$regex:"定时发送邮件"}} //模糊查询条件 {"DateTime":-1} //排序降序 工具增删改查参考 https://www.cnblogs.com/zhaoyang-1989/p/7066360.html 阅读全文
摘要:
var retryTimes = 5; //重试次数 int times = 0; skip: //代码段开始 //处理逻辑 var result=false ; //处理结果 //..... //处理逻辑 //判断 处理结果是否成功, 并且 重试次数是否达到上限 (处理成功,不需要重试,或达到上限次数,不执行 ) if (!resul... 阅读全文
摘要:
//加载配置文件 var builder = new ConfigurationBuilder() .SetBasePath(Directory.GetCurrentDirectory()) .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true) .AddEnvironmentVariables(); Con... 阅读全文
摘要:
1.MSMQ安装 控制面板-程序和功能-打开或关闭Windows功能-Microsoft Message Queue(MSMQ)服务器,选中所有,点击确定。 2.消息队列的应用场景(转载自http://www.cnblogs.com/stopfalling/p/5375492.html) ①异步处理 阅读全文
摘要:
1、单问号(?) 作用:用于给变量设初化的时候,给变量(int类型)赋为null值,而不是0。 例子: public int a; //默认值为0 public int ?b; //默认值为null 参考:http://msdn.microsoft.com/zh-cn/library/1t3y8s4 阅读全文
摘要:
对比 准备数据 实体类: 定义: 使用DataContractJsonSerializer 帮助类: 用法: 输出: 使用JavaScriptSerializer 使用Silverlight 使用JSON.NET 阅读全文
摘要:
字符串转json对象 方法一:var json = eval('(' + str + ')'); 方法二:return JSON.parse(str); json对象转字符串 JSON.stringify(jsonobj); //可以将json对象转换成字符串 例如: JSON字符串: var str1 = '{ "name": "cxh", "sex": "man... 阅读全文