MyDAL - is null && is not null 条件 使用
索引:
一.API 列表
C# 代码中 instance.property == null 生成 SQL 对应的 is null :
如:.Queryer<Agent>()
... ...
.Where(it => it.CrmUserId == null)
... ... 用于 单表 is null 条件
.Queryer(out Agent a5,out AgentInventoryRecord r5)
... ...
.Where(() => a5.ActiveOrderId==null)
... ... 用于 多表连接 is null 条件
C# 代码中 instance.propery != null 生成 SQL 对应的 is not null :
如:.Queryer<Agent>()
... ...
.Where(it => it.ActiveOrderId != null)
... ... 用于 单表 is not null 条件
.Queryer(out Agent a6, out AgentInventoryRecord r6)
... ...
.Where(() => a6.ActiveOrderId != null)
... ... 用于 多表连接 is not null 条件
二.API 单表-便捷 方法 举例
1. IS NULL 条件
var res7 = await Conn.QueryListAsync<Agent>(it => it.ActiveOrderId == null);
以 MySQL 为例,生成 SQL 如下:
select *
from `agent`
where `ActiveOrderId` is null ;
2. IS NOT NULL 条件
var res8 = await Conn.QueryListAsync<Agent>(it => it.ActiveOrderId != null);
以 MySQL 为例,生成 SQL 如下:
select *
from `agent`
where `ActiveOrderId` is not null ;
三.API 单表-完整 方法 举例
1. IS NULL 条件
var res1 = await Conn
.Queryer<Agent>()
.Where(it => it.ActiveOrderId == null)
.QueryListAsync();
以 MySQL 为例,生成 SQL 如下:
select *
from `agent`
where `ActiveOrderId` is null ;
2. IS NOT NULL 条件
var res4 = await Conn
.Queryer<Agent>()
.Where(it => it.ActivedOn != null && it.ActiveOrderId != null && it.CrmUserId == null)
.QueryListAsync();
以 MySQL 为例,生成 SQL 如下:
select *
from `agent`
where (( `ActivedOn` is not null && `ActiveOrderId` is not null ) && `CrmUserId` is null );
四.API 多表连接-完整 方法 举例
1. IS NULL 条件
var res5 = await Conn
.Queryer(out Agent a5,out AgentInventoryRecord r5)
.From(()=>a5)
.LeftJoin(()=>r5)
.On(()=>a5.Id==r5.AgentId)
.Where(() => a5.ActiveOrderId==null)
.QueryListAsync<Agent>();
以 MySQL 为例,生成 SQL 如下:
select a5.`*`
from `agent` as a5
left join `agentinventoryrecord` as r5
on a5.`Id`=r5.`AgentId`
where a5.`ActiveOrderId` is null ;
2. IS NOT NULL 条件
var res6 = await Conn
.Queryer(out Agent a6, out AgentInventoryRecord r6)
.From(() => a6)
.LeftJoin(() => r6)
.On(() => a6.Id == r6.AgentId)
.Where(() => a6.ActiveOrderId != null)
.QueryListAsync<Agent>();
以 MySQL 为例,生成 SQL 如下:
select a6.`*`
from `agent` as a6
left join `agentinventoryrecord` as r6
on a6.`Id`=r6.`AgentId`
where a6.`ActiveOrderId` is not null ;
蒙
2019-01-20 22:22 周日
2019-04-12 23:47 周五
MyDAL - is null && is not null 条件 使用的更多相关文章
- SQL语句中=null和is null
平时经常会遇到这两种写法:IS NOT NULL与!=NULL.也经常会遇到数据库有符合条件!=NULL的数据,但是返回为空集合.实际上,是由于对二者使用区别理解不透彻. 默认情况下,推荐使用 IS ...
- mysql探究之null与not null
相信很多用了mysql很久的人,对这两个字段属性的概念还不是很清楚,一般会有以下疑问: 1.我字段类型是not null,为什么我可以插入空值 2.为毛not null的效率比null高 3.判断字段 ...
- 【MySQL】探究之null与not null
相信很多用了mysql很久的人,对这两个字段属性的概念还不是很清楚,一般会有以下疑问: 我字段类型是not null,为什么我可以插入空值 为毛not null的效率比null高 判断字段不为空的时候 ...
- 数据库中is null(is not null)与=null(!=null)的区别
在标准SQL语言(ANIS SQL)SQL-92规定的Null值的比较取值结果都为False,既Null=Null取值也是False.NULL在这里是一种未知值,千变万化的变量,不是“空”这一个定值! ...
- 索引法则--IS NULL, IS NOT NULL 也无法使用索引
Mysql 系列文章主页 =============== 1 数据准备 1.1 建表 DROP TABLE IF EXISTS staff; CREATE TABLE IF NOT EXISTS st ...
- MySQL null与not null和null与空值''的区别
参考连接:https://segmentfault.com/a/1190000009540449 相信很多用了MySQL很久的人,对这两个字段属性的概念还不是很清楚,一般会有以下疑问: 我字段类型是n ...
- 数据库表字段,DEFAULT NULL与NOT NULL DEFAULT
为什么要把字段设置成not null 呢? 1.空值是不占用空间的 2.mysql中的NULL其实是占用空间的,下面是来自于MYSQL官方的解释 “NULL columns require addit ...
- 转!!mysql 字段 is not null 和 字段 !=null
今天在查询数据时,查到包含一条某个时间startTime(该字段默认为null ) 为null的记录,想把它过滤,加了 startTime != null 的条件,结果记录都没了,应该用条件 is ...
- IOS开发遇到(null)与<null>轻松处理
在ios开发中不可避免的我们会遇到服务器返回的值有空值,但是如果是nil也就算了还可能得到(null)以及<null>的返回值,该如何处理呢?(当然有的字典转模型中已处理,可以通过遍历等) ...
随机推荐
- 前端笔记之CSS(上)
层叠样式表(英文全称:Cascading Style Sheets)是一种用来表现HTML(标准通用标记语言的一个应用)或XML(标准通用标记语言的一个子集)等文件样式的计算机语言.CSS不仅可以静态 ...
- arcgis api 3.x for js 入门开发系列批量叠加 zip 压缩 SHP 图层优化篇(附源码下载)
前言 关于本篇功能实现用到的 api 涉及类看不懂的,请参照 esri 官网的 arcgis api 3.x for js:esri 官网 api,里面详细的介绍 arcgis api 3.x 各个类 ...
- Android之应用市场排行榜、上架、首发
文章大纲 一.应用市场排行榜介绍二.应用市场上架介绍三.应用市场首发介绍四.参考文档 一.应用市场排行榜介绍 iiMedia Research(艾媒咨询)权威发布<2017-2018中国 ...
- Android权限禁止及友好提示用户开通必要权限
Android权限 Android安全架构规定:默认情况下,任何应用都没有权限执行对其他应用.操作系统或用户有不利影响的任何操作.这包括读写用户的私有数据(联系人,短信,相册,位置).读写其他应用的文 ...
- Python3 中 爬网页 \uxxx 问题
今天上午在没事儿爬一下我自己的博客主页文章练习下.在写入的时候遇到的编码问题,折腾了半天 ,记录一下 import urllib.request import time str1 = urllib.r ...
- getopt与getopt_long
如何通过命令行,为程序传入参数,可以使用函数getopt与getopt_long. 函数的声明如下: #include <unistd.h> int getopt(int argc, ch ...
- 题目:python 打印出如下图案(菱形):
# 题目:打印出如下图案(菱形): # # * # *** # ***** # ******* # ***** # *** # * nu = 1 # 开始值 k = 2 # 变量值 while nu ...
- 以Windows服务方式运行ASP.NET Core程序
我们对ASP.NET Core的使用已经进行了相当一段时间了,大多数时候,我们的Web程序都是发布到Linux主机上的,当然了,偶尔也有需求要发布到Windows主机上,这样问题就来了,难道直接以控制 ...
- 使用docker-compose 大杀器来部署服务 上(转)
使用docker-compose 大杀器来部署服务 上 我们都听过或者用过 docker,然而使用方式却是仅仅用手动的方式,这样去操作 docker 还是很原始. 好吧,可能在小白的眼中噼里啪啦的对着 ...
- 自学python的日记分享
2019.4.22登记 课堂笔记 2019.4.8 在windows环境下,用python写出第一个程序“hello world” print("Hello World!!!") ...