posts - 609,  comments - 13,  views - 64万
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
08 2018 档案
linq join用法,左连接
摘要:单条件: var query = from person in people join pet in pets on person equals pet.Owner select new { OwnerName = person.FirstName, PetName = pet.Name }; 多条 阅读全文
posted @ 2018-08-31 15:29 邢帅杰 阅读(232) 评论(0) 推荐(0) 编辑
TLS1.1升级到TLS1.2(微信小程序要求TLS1.2以上)
摘要:检测是否具有TLS1.2:www.ssllabs.com 实验过的办法: https://www.cnblogs.com/wqcheng/p/6618070.html http://www.ocbc.com.cn/business-banking/cn/e-banking/faq-system-re 阅读全文
posted @ 2018-08-21 18:11 邢帅杰 阅读(2800) 评论(0) 推荐(1) 编辑
微信小程序解密
摘要:获取OpenId和SessionKey code 阅读全文
posted @ 2018-08-15 15:28 邢帅杰 阅读(183) 评论(0) 推荐(0) 编辑
js的urlencode
摘要:function urlencode (str) { str = (str + '').toString(); return encodeURIComponent(str).replace(/!/g, '%21').replace(/'/g, '%27').replace(/\(/g, '%28') 阅读全文
posted @ 2018-08-14 16:55 邢帅杰 阅读(2549) 评论(0) 推荐(0) 编辑
EntityFramework的linq扩展where
摘要:代码 Expression<Func<TSource, bool>> predicate = c=>c.Id==1; predicate = predicate.And(c=>c.Name=="jay"); 阅读全文
posted @ 2018-08-09 16:13 邢帅杰 阅读(185) 评论(0) 推荐(0) 编辑
RestSharp发送请求得到Json数据
摘要:NUGET安装:RestSharp code: public string Post(string url, string content) { string contentType = "application/json"; //Content-Type try { var client = ne 阅读全文
posted @ 2018-08-07 11:33 邢帅杰 阅读(5605) 评论(0) 推荐(0) 编辑
ABP框架基本使用
摘要:文档:https://docs.abp.io/zh-Hans/abpabp默认管理员:admin,密码:123qwe,这是写死的,xxx.Core\Authorization\Users\User.cs 行数:101.先在Core项目中建立模型Models》Model.cs/ModelManager 阅读全文
posted @ 2018-08-02 17:39 邢帅杰 阅读(948) 评论(0) 推荐(0) 编辑
socket
摘要:https://blog.csdn.net/smartsmile2012/article/details/71172450 阅读全文
posted @ 2018-08-01 10:02 邢帅杰 阅读(88) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示