我有:
var x = from os in dbLinq.vmesne_ures
where ((os._projekt_id).Equals(_cb_projekt_id))
orderby os.projekt_name
group new { vm_oseba_id = os._oseba_id } by os._oseba_id into uniqueIds
select uniqueIds.FirstOrDefault();
它返回唯一的 ID。是否可以添加where
子句x
?就像是
var y = x ... where os._oseba_id < 100
我知道我可以在哪里((os._projekt_id).Equals(_cb_projekt_id) && where os._oseba_id < 100)
或类似的地方做。x
如果我可以添加到另一个解决方案,我正在寻找这个解决方案where
?