- 博客(5)
- 收藏
- 关注
转载 C#-Parallel
1 using System; 2 using System.Collections.Concurrent; 3 using System.Collections.Generic; 4 using System.Linq; 5 using System.Threading; 6 using System.Threading.Tasks; 7 ...
2019-09-17 09:25:00
147
转载 原来触发器不是单行数据触发
之前写的触发器里取影响数据是这样的:select @Id=Id from inserted网上的大多数触发器都是这样写的,让我以为触发器是影响的每行数据都会触发。直到……然后去查官方文档,如下原来如此 ,流下了不学无术的泪水……转载于:https://www.cnblogs.com/LaughAtSelfsWrong/p...
2019-09-12 09:20:00
173
转载 C#-Json-抽象类的反序列化
引用:1 using System;2 using System.Collections.Generic;3 using Newtonsoft.Json;4 using Newtonsoft.Json.Linq;自定义转化器: 1 public class JsonPersonConverter : JsonConverter 2 {...
2019-09-11 08:58:00
912
转载 vs项目模板创建和使用
一、使用dotnet命令创建(适用于.NET Core,可以创建包含任意数量个项目的模板,但不会出现在vs的新建项目模板中)官方文档:https://docs.microsoft.com/zh-cn/dotnet/core/tools/custom-templates拷贝所有要用作模板的项目到新建文件夹在新建文件夹下添加./.template.config/templat...
2019-08-29 22:43:00
1049
转载 c#-Json-Json字符串字段递归排序
1 private static dynamic GetSorObject (Object obj) 2 { 3 if (obj is JArray) 4 { 5 var list = new List<dynamic> (); 6 foreach (var item in (obj as JArray...
2019-08-28 22:13:00
735
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人