动态代码 C# 中实现动态代码的方式有很多,比如 反射、表达式树、EMIT、Roslyn、Source Generators 等,C# 各类框架中几乎都有动态代码技术的使用,比如依赖注入、对象关系映射、AOP 技术等。由于动态代码技术在 C# 中的使用场景非常广泛,因此在本章中,笔者将会介绍多种动态[......] 继续阅读
动态代码 C# 中实现动态代码的方式有很多,比如 反射、表达式树、EMIT、Roslyn、Source Generators 等,C# 各类框架中几乎都有动态代码技术的使用,比如依赖注入、对象关系映射、AOP 技术等。由于动态代码技术在 C# 中的使用场景非常广泛,因此在本章中,笔者将会介绍多种动态[......] 继续阅读
教程名称:使用 C# 入门深度学习 作者:痴者工良 教程地址: https://torch.whuanle.cn 电子书仓库:https://github.com/whuanle/cs_pytorch Maomi.Torch 项目仓库:https://github.com/whuanle/Maomi[......] 继续阅读
Tutorial Title: Getting Started with Deep Learning Using C# Author: whuanle Tutorial URL: https://torch.whuanle.cn E-book Repository: https://github.c[......] 继续阅读
通过生成对抗网络(GAN)训练和生成头像 https://torch.whuanle.cn 电子书仓库:https://github.com/whuanle/cs_pytorch Maomi.Torch 项目仓库:https://github.com/whuanle/Maomi.Torch 说明 本[......] 继续阅读
Training and Generating Avatars via Generative Adversarial Networks (GAN) https://torch.whuanle.cn E-book repository: https://github.com/whuanle/cs_py[......] 继续阅读
[TOC] 教程名称:使用 C# 入门深度学习 作者:痴者工良 教程地址:https://torch.whuanle.cn 电子书仓库:https://github.com/whuanle/cs_pytorch Maomi.Torch 项目仓库:https://github.com/whuanle/[......] 继续阅读
[TOC] Tutorial Title: Getting Started with Deep Learning using C# Author: whuanle Tutorial URL: https://torch.whuanle.cn E-book Repository: https://gi[......] 继续阅读
教程名称:使用 C# 入门深度学习 作者:痴者工良 教程地址:https://torch.whuanle.cn 电子书仓库:https://github.com/whuanle/cs_pytorch Maomi.Torch 项目仓库:https://github.com/whuanle/Maomi.[......] 继续阅读
Tutorial Name: Getting Started with Deep Learning using C# Author: whuanle Tutorial Address: https://torch.whuanle.cn E-book Repository: https://githu[......] 继续阅读
In the multithreading column, knowledge related to C# timers has been written, but the content is not very complete. Recently, I have deepened some un[......] 继续阅读
通用模板如下: Serilog: Using: - "Serilog.Sinks.Console" MinimumLevel: Default: Information Override: Microsoft.AspNetCore.HttpLogging:[......]继续阅读
Serilog: Using: - "Serilog.Sinks.Console" MinimumLevel: Default: Information Override: Microsoft.AspNetCore.HttpLoggin[......]继续阅读
教程名称:使用 C# 入门深度学习 作者:痴者工良 地址: https://torch.whuanle.cn 1.2 Pytorch 基础 本文内容介绍 Pytorcn 的基础 API,主要是数组的创建方式和运算方式,由于相关内容跟 Numpy 比较相似,并且 Numpy 类型可以转 torch.T[......] 继续阅读
教程名称:Getting Started with Deep Learning Using C# 作者:whuanle 地址: https://torch.whuanle.cn 1.2 Basic of Pytorch This section introduces the basic API of[......] 继续阅读
项目中使用 Grpc 时,由于有大量 Proto,会导致引入的时候需要配置大量文件,因此需要批量导入。 假如有目录: servicea serviceb 只想引入 servicea 的 proto 文件,则: <ItemGroup> <Protobuf Include=&[......]继续阅读
项目中使用 Grpc 时,由于有大量 Proto,会导致引入的时候需要配置大量文件,因此需要批量导入。 假如有目录: servicea serviceb 只想引入 servicea 的 proto 文件,则: <ItemGroup> <Protobuf In[......]继续阅读
背景:最近使用 Debezium 做数据库数据监听工具,然后使用 C# 开发管理工具对接 kafka 获取增量同步的数据,这个 C# 管理工具需要支持自定义下游数据库映射,因此再新增加映射关系时需要批量将上游数据全量同步到下游,然后才能从 Kafka 中开始使用增量数据同步,以便保持上下游的数据一致[......] 继续阅读
背景:最近使用 Debezium 作为数据库数据监听工具,并利用 C# 开发管理工具对接 Kafka 来获取增量同步的数据。这个 C# 管理工具需要支持自定义下游数据库映射,因此在新增映射关系时,需要批量将上游数据全量同步到下游,才能从 Kafka 中开始使用增量数据同步,以保持上下游的数据一致性。[......] 继续阅读
[TOC] In business development, using database transactions is essential. Various ORMs are often used to execute database operations, simplifying code[......] 继续阅读