摘要: 输入:rpm -qa yum,之后出现如下信息,表示已经安装过了; 阅读全文
posted @ 2021-11-06 13:00 艾特-天空之海 阅读(1021) 评论(0) 推荐(0) 编辑
摘要: sudo su 阅读全文
posted @ 2021-11-06 12:49 艾特-天空之海 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 先按 "Esc" 键,在按 ":", 再敲出wq!; :wq! 强制保存文件并退出vi 编辑 阅读全文
posted @ 2021-11-06 12:28 艾特-天空之海 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 使用场景:多条件筛选,不确定条件的个数时,可选择此种方式; 扩展类: public static class ExpLinqExpressions { public static Expression<Func<T, bool>> True<T>() { return f => true; } pu 阅读全文
posted @ 2021-11-04 16:44 艾特-天空之海 阅读(220) 评论(0) 推荐(0) 编辑
摘要: ///查询数据库的仓储类 ItestRepository test = new TestRepository(); ParameterExpression parameterExpression = Expression.Parameter(typeof(Test), "d"); PropertyI 阅读全文
posted @ 2021-11-04 16:36 艾特-天空之海 阅读(52) 评论(0) 推荐(0) 编辑
摘要: Program是一个类;这行代码的结果是找到这个类的绝对路径; string test = typeof(Program).Assembly.Location; 阅读全文
posted @ 2021-11-04 10:20 艾特-天空之海 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 查看内核版本信息:uname -r 查看当前操作系统的所有信息,输入命令: uname -a 内核的版本为:3.10.0-693.el7.x86_64 如下图所示: 阅读全文
posted @ 2021-11-01 23:01 艾特-天空之海 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-10-28 14:48 艾特-天空之海 阅读(10) 评论(0) 推荐(0) 编辑
摘要: ASP.Net Core Api从请求中传过来的参数中,可以自动绑定到对应的数据传输对象; 模型绑定的绑定来源有6种: 1、[FromHeader]特性: 从HTTP请求的Header中获取参数的值; 2、[FromQuery]特性:从查询字符串中获取参数的值。 3、[FromServices]特性 阅读全文
posted @ 2021-10-27 22:36 艾特-天空之海 阅读(73) 评论(0) 推荐(0) 编辑
摘要: (此处做笔记给自己看) 1、return Json{ new { messge = "success", code = 200 }}; 2、return Content{“this is content !”} 阅读全文
posted @ 2021-10-27 21:19 艾特-天空之海 阅读(37) 评论(0) 推荐(0) 编辑