转载地址: http://www.prg-cn.com/article-4449-1.html
Null语义
说明:下面第一个例子说明查询ReportsToEmployee为null的雇 员。第二个例子使用Nullable<T>.HasValue查询雇员,其结果与第一个例 子相同。在第三个例子中,使用Nullable<T>.Value来返回 ReportsToEmployee不为null的雇员的ReportsTo的值。
1.Null
查找不 隶属于另一个雇员的所有雇员:
- var q =
- from e in db.Employees
- where e.ReportsToEmployee == null
- select e;
2.Nullable<T>.HasValue
查找不隶属于另一个雇员 的所有雇员:
- var q =
- from e in db.Employees
- where !e.ReportsTo.HasValue
- select e;
3.Nullable<T>.Value
返回前者的EmployeeID 编号。请注意 .Value 为可选:
- var q =
- from e in db.Employees
- where e.ReportsTo.HasValue
- select new
- {
- e.FirstName,
- e.LastName,
- ReportsTo = e.ReportsTo.Value
- };
日期函数
LINQ to SQL支持以下 DateTime方法。但是,SQL Server和CLR的DateTime类型在范围和计时周期精度 上不同,如下表。
类型 | 最小值 | 最大 值 | 计时周期 |
System.DateTime | 0001 年 1 月 1 日 | 9999 年 12 月 31 日 | 100 毫微秒(0.0000001 秒) |
T-SQL DateTime | 1753 年 1 月 1 日 | 9999 年 12 月 31 日 | 3.33… 毫秒(0.0033333 秒) |
T-SQL SmallDateTime | 1900 年 1 月 1 日 | 2079 年 6 月 6 日 | 1 分钟(60 秒) |
CLR DateTime 类型与SQL Server类型相比,前者范围更 大、精度更高。因此来自SQL Server的数据用CLR类型表示时,绝不会损失量值 或精度。但如果反过来的话,则范围可能会减小,精度可能会降低;SQL Server 日期不存在TimeZone概念,而在CLR中支持这个功能。
我们在LINQ to SQL查询使用以当地时间、UTC 或固定时间要自己执行转换。
下面用三个 实例说明一下。
1.DateTime.Year
- var q =
- from o in db.Orders
- where o.OrderDate.Value.Year == 1997
- select o;
语句描述:这个例子使用DateTime 的Year 属性查找1997 年下的订单。
2.DateTime.Month
- var q =
- from o in db.Orders
- where o.OrderDate.Value.Month == 12
- select o;
语句描述:这个例子使用DateTime的Month属性查找十二月下的订 单。
3.DateTime.Day
- var q =
- from o in db.Orders
- where o.OrderDate.Value.Day == 31
- select o;
语 句描述:这个例子使用DateTime的Day属性查找某月 31 日下的订单。