上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 77 下一页
摘要: SQLSERVER 数据库:SQL基础 2012-05 - 2012-08 《microsoft sql server 2008技术内幕 t-sql语言基础》 2018-05-08 《SQL基础教程》 2018-04-28 创建索引,SQL优化2020-04-10 SQLSERVER - 性能优化 阅读全文
posted @ 2021-09-05 23:23 【唐】三三 阅读(198) 评论(0) 推荐(0)
摘要: 公共数据 InMemoryData.cs public class InMemoryData { public static List<Employee> Employees = new List<Employee> { new Employee { Id = 10001, No= 2000, Fi 阅读全文
posted @ 2021-09-02 23:22 【唐】三三 阅读(340) 评论(0) 推荐(0)
摘要: 示例: on(div, "compositionend", function (e) { if (this$1.composing) { if (e.data != this$1.composing.data) { this$1.readFromDOMSoon() } this$1.composin 阅读全文
posted @ 2021-08-31 10:24 【唐】三三 阅读(385) 评论(0) 推荐(0)
摘要: 简介 服务端 Grpc.AspNetCore 客户端 Google.Protobuf Protobuf 序列化协议的包 Grpc.Net.Client 客户端的包 Grpc.Net.ClientFactory HTTPClientFactory集成的包 Grpc.Tools 命令行工具 .proto 阅读全文
posted @ 2021-08-29 20:35 【唐】三三 阅读(1644) 评论(0) 推荐(0)
摘要: 1.简介 它的组件包是Microsoft.Extensions.Http 复原HttpClient带来的问题 HttpClient相关问题 虽然HttpClient类实现了IDisposable,但不是首选在using语句中声明和实例化它,因为释放HttpClient对象时,基础套接字不会立即释放, 阅读全文
posted @ 2021-08-27 17:12 【唐】三三 阅读(1870) 评论(0) 推荐(1)
摘要: 基础知识 ElasticSeach 访问封装的服务类 IElasticSearch类的代码如下: public interface IESSever { /// <summary> /// Linq查询的官方Client /// </summary> IElasticClient ElasticLi 阅读全文
posted @ 2021-07-18 20:22 【唐】三三 阅读(661) 评论(0) 推荐(0)
摘要: Elastic Search.NET -NEST Object Initializer 语法去构造查询 Match All query 最简单的查询应该就是 match_all 了,这种查询会返回所有的文档,并给每份文档的 _score 统一赋值为 1.0 匹配的文档并不是都会在一次响应中全部返回, 阅读全文
posted @ 2021-06-15 15:13 【唐】三三 阅读(683) 评论(1) 推荐(0)
摘要: AutoMapper net core 1.入门例子 public class Foo { public int ID { get; set; } public string Name { get; set; } } public class FooDto { public int ID { get 阅读全文
posted @ 2021-06-10 23:11 【唐】三三 阅读(103) 评论(0) 推荐(0)
摘要: 15.2 思考异步编程 15.2.1 异步执行的基础 实际上, C#编译器会对所有await都构建一个后续操作。这个理念表述起来非常简单,显然是为了可读性和开发者的健康。 实际上基于任务的异步模式要稍有不同。它并不会将后续操作传递给异步操作,而是在异步操作开始时返回一个token,我们可以用这个to 阅读全文
posted @ 2021-05-02 22:09 【唐】三三 阅读(259) 评论(0) 推荐(0)
摘要: 文件与文件夹的完全复制,包扩子目录与子目录的文件 static void Main(string[] args) { string dir1 = @"E:\MyTest\2.NET\FileAndDirCopy\file1"; string dir2 = @"E:\MyTest\2.NET\File 阅读全文
posted @ 2021-04-29 22:09 【唐】三三 阅读(281) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 77 下一页