摘要: ​ //排序 query = query.OrderByDescending(q => q.EduBack).ThenByDescending(q => q.CreateTime); ​ ​ ​ 阅读全文
posted @ 2021-07-05 18:55 优敏行 阅读(25) 评论(0) 推荐(0)
摘要: ​ 7.5补充 情况2 ​ pagesize等于10,不能都写pageindex! ​ 报错问题 ​ 首先方面名字,先要写对啊 ​ ​ ​ 增加createID,布尔类型改为FALSE就行了 1 问题原因在URL地址 http://localhost:50000/api/bannertestone/ 阅读全文
posted @ 2021-07-05 18:54 优敏行 阅读(180) 评论(0) 推荐(0)
摘要: vue绑定click事件 参考 https://blog.csdn.net/justinytsoft/article/details/70597695?ops_request_misc=&request_id=&biz_id=102&utm_term=vue%E7%BB%91%E5%AE%9A%E7 阅读全文
posted @ 2021-07-03 16:27 优敏行 阅读(37) 评论(0) 推荐(0)
摘要: 2022 year 5.7 framework(负锐默卧克) 框架 .,net框架平台 3.18 career(客瑞儿) 事业 一周一词了,最近太忙了啊 3.5 gene(G..摘..恩儿)基因 gender(真德) 性别 3.4 condition(刊滴渗 )(刊.低渗儿)条件 条件查询 3.1 阅读全文
posted @ 2021-07-03 12:13 优敏行 阅读(219) 评论(0) 推荐(0)
摘要: ​ 效果 ​ 代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" c 阅读全文
posted @ 2021-07-03 11:51 优敏行 阅读(179) 评论(0) 推荐(0)
摘要: The saplings that have experienced some wind and rain are not small saplings. They have been thriving for months, or even years.Fast growth, one day t 阅读全文
posted @ 2021-07-02 19:04 优敏行 阅读(25) 评论(0) 推荐(0)
摘要: 数组从字面上理解就是存放一组数,但在 C# 语言中数组存放的并不一定是数字,也可以是其他数据类型。 一个变量只能存放一个值,如果需要计算 10 个变量中的最大值,则需要定义 10 个变 量,非常麻烦。 数组的引入给编程带来了很多方便,它能通过一个变量存放多个相同类型的值,在存取数组中的值时直接根据数 阅读全文
posted @ 2021-07-02 19:02 优敏行 阅读(486) 评论(0) 推荐(0)
摘要: 数据类型主要用于指明变量和常量存储值的类型,C# 语言是一种强类型语言,要求每个变量都必须指定数据类型。C# 语言的数据类型分为值类型和引用类型。值类型包括整型、浮点型、字符型、布尔型、枚举型等;引用类型包括类、接口、数组、委托、字符串等。从内存存储空间的角度而言,值类型的值是存放到栈中的,每次存取 阅读全文
posted @ 2021-07-02 17:45 优敏行 阅读(1096) 评论(0) 推荐(0)
摘要: 学生表:包括学号,姓名,性别,年龄,专业 create table student ( student_id varchar(7)primary key, student_name varchar(10)not null, student_sex varchar(2) check(student_s 阅读全文
posted @ 2021-07-02 17:36 优敏行 阅读(6963) 评论(0) 推荐(0)
摘要: 1增 1.1【插入单行】insert [into] <表名> (列名) values (列值)例:insert into Strdents (姓名,性别,出生日期) values ('开心朋朋','男','1980/6/15') 1.2【将现有表数据添加到一个已有表】insert into <已有的 阅读全文
posted @ 2021-07-02 17:33 优敏行 阅读(1603) 评论(0) 推荐(0)