Linqまたはより正確に言うと、以下のクエリのと のLinq to Sql間に違いはありますか?== nullIsNullOrEmpty
From a in context.SomeTable
where a.SomeId.Equals(SomeOtherId)
&& a.SomeOtherColumn == null
Select new .....
&
From a in context.SomeTable
where a.SomeId.Equals(SomeOtherId)
&& string.IsNullOrEmpty(a.SomeOtherColumn)
Select new .....