首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

linq 中怎么表达数据库查询语句中的 is null

2012-12-20 
linq 中如何表达数据库查询语句中的 is nullvar result from o in this._Context.DocumentPresentationMo

linq 中如何表达数据库查询语句中的 is null

var result =        from o in this._Context.DocumentPresentationModels        where Nullable<Guid>.Equals(o.ParentId,null)        select o;相当于数据库中sql查询语句[code"]select * from KM_Document where KM_Document.ParentId is null

热点排行