摘要: SQL只根据某一个字段去重并保留其他字段,要实现此需求的关键是用到两个函数,分别为:group by 与 max() group by的目的是分组从而达到去重的效果,max()的目的是取分组重复的字段中取出随机的一条数据(比如说这里用的max()意思是取某一字段最大的,或者也可以用其他只能获取一条数 阅读全文
posted @ 2020-05-23 14:19 蛟十五 阅读(8184) 评论(0) 推荐(0)
摘要: 1.下载高版本的安装包 从微软官方下载:https://www.microsoft.com/zh-cn/download/confirmation.aspx?id=3182 2. 运行services.msc 找到服务:“基于Windows Mobile 2003的设备连接” 右键属性:在登陆选项卡 阅读全文
posted @ 2020-05-20 14:26 蛟十五 阅读(1280) 评论(0) 推荐(0)
摘要: #region 多条件搜索时,使用List集合来拼接条件(拼接Sql) StringBuilder sql = new StringBuilder("select * from PhoneNum"); List<string> wheres = new List<string>(); if (cbo 阅读全文
posted @ 2020-05-11 14:19 蛟十五 阅读(2679) 评论(0) 推荐(0)
摘要: public class HttpClientFactory { private static HttpClient _httpClient = null; static HttpClientFactory() { _httpClient = new HttpClient(new HttpClien 阅读全文
posted @ 2020-05-06 08:38 蛟十五 阅读(1272) 评论(0) 推荐(0)
摘要: private static readonly HttpClient _httpClient; private ApiLoggerOptions _config; static ApiLogger() { _httpClient = new HttpClient(); _httpClient.Tim 阅读全文
posted @ 2020-05-06 08:33 蛟十五 阅读(1521) 评论(0) 推荐(0)
摘要: 1、使用HttpClient实现basic身份认证 using (HttpClient client = new HttpClient()) { client.DefaultRequestHeaders.Authorization=new AuthenticationHeaderValue("Bas 阅读全文
posted @ 2020-05-06 08:29 蛟十五 阅读(751) 评论(0) 推荐(0)