摘要:
LinqExpressionLearn\Linq\ParameterRebinder.cs using System.Linq.Expressions; /// <summary> /// 表达式参数 /// </summary> public class ParameterRebinder : E 阅读全文
2024年8月18日 #
摘要:
封装前和封装后的实体类设计 如何封装 封装前的例子 假设我们有一个用户实体类 User,在封装前,可能看起来像这样: public class User { public int Id { get; set; } public string UserName { get; set; } public 阅读全文
摘要:
curlRequest\json\createtodo.json { "name": "eat", "status": 0, "remark": "eat apple" } curlRequest\json\createtodo2.json { "name": "eat", "status": 0, 阅读全文
摘要:
获取最新的shell脚本并执行 #!/bin/bash # 获取当前目录 current_dir=$(pwd) # 获取当前脚本的绝对路径 script_path=$(readlink -f "$0") # 使用find查找以temp开头且以.sh结尾的文件,并按修改时间排序 latest_file 阅读全文
摘要:
GET curl -X 'GET' \ 'http://localhost:5294/api/Todos?Status=0&PrePage=10' \ -H 'accept: */*' POST curl -X 'POST' \ 'http://localhost:5294/api/Todos' \ 阅读全文