私は持っています:
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
ますか?