LinQ高级查询、组合查询、IQueryable集合类型 LinQ高级查询: 1、模糊查询(包含) Repeater1.DataSource = con.car.Where(r =>r.name.Contains(s)).ToList(); 2、开头 Repeater1.DataSource = c ...
分类:
其他好文 时间:
2020-08-04 16:40:03
阅读次数:
74
Python命名空间和作用域 总结 emmm,这一块讲了2个内容,一个是命名空间,一个是作用域。一个一个说吧 命名空间 A namespace is a mapping from names to objects.Most namespaces are currently implemented a ...
分类:
编程语言 时间:
2020-08-03 13:29:08
阅读次数:
69
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.Mvc; 6 using BLL; 7 using MODEL; 8 9 n ...
分类:
其他好文 时间:
2020-08-02 22:21:21
阅读次数:
83
什么是pod? 官方说明: Pod是Kubernetes应用程序的最基本执行单元—是你创建或部署Kubernetes对象模型中的最小和最简单的单元。 Pod表示在集群上运行的进程。Pod封装了应用程序的容器(或者在某些情况下是多个容器)、存储资源、唯一的网络标识(IP地址)以及控制容器应该如何运行的 ...
分类:
其他好文 时间:
2020-07-30 14:52:11
阅读次数:
163
#abp框架Excel导出——基于vue #1.技术栈 ##1.1 前端采用vue,官方提供 UI套件用的是iview ##1.2 后台是abp——aspnetboilerplate 即abp v1,https://github.com/aspnetboilerplate/aspnetboilerp ...
分类:
其他好文 时间:
2020-07-29 21:18:12
阅读次数:
78
一、直接创建对象 person = Person()person.p_name='mozili'person.save() 二、使用create()函数创建 person = Person.objects.create(p_name='limozi',p_age=20,p_sex=False) pe ...
分类:
其他好文 时间:
2020-07-29 10:32:00
阅读次数:
78
课程单查接口与章节接口 课程单查接口 class CourseView(GenericViewSet, RetrieveModelMixin): queryset = models.Course.objects.filter(is_delete=False, is_show=True).order_ ...
分类:
其他好文 时间:
2020-07-28 22:34:13
阅读次数:
69
-- 查看被锁对象 select object_name, machine, s.sid, s.serial# from v$locked_object l, dba_objects o, v$session s where l.object_id = o.object_id and l.sessi ...
分类:
数据库 时间:
2020-07-28 17:10:59
阅读次数:
81
1、数据库查询的三种方式 正向查询: (1)获取全部数据all v1=models.UserInfo.objects.all().first() #取出Querryset类型数据,里面是对象,需循环取出 v1.ut #跨表,ut是外键 (2)只取部分字段value, 外键__字段 v2=models ...
分类:
数据库 时间:
2020-07-28 16:57:44
阅读次数:
67
写到到数据库的模型 using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace ...