1
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
?
我可以添加直接給x?像'x.where' ...如果你知道我試着做 – Traktor 2012-04-18 08:08:48
@Traktor你有建全的查詢變種Y =從x其中....你爲什麼要那麼做操作系統? – 2012-04-18 08:11:59
類似於'var y = From i in x where i._oseba_id <100'? – Traktor 2012-04-18 08:12:20