NHibernate'den dönen bir IQueryable üzerinde LINQ kullanıyorum ve birkaç alandaki maksimum değer (ler) i içeren satırı seçmem gerekiyor.
Yapıştırdığım kısmı basitleştirdim. Tablomdan bir alandaki maksimum değeri olan bir satırı seçmem gerekiyor.
var table = new Table { new Row(id: 1, status: 10), new Row(id: 2, status: 20) }
from u in table
group u by 1 into g
where u.Status == g.Max(u => u.Status)
select u
Bu yanlış ama doğru formu bulamıyorum.
BTW, aslında başarmaya çalıştığım şey yaklaşık olarak şudur:
var clientAddress = this.repository.GetAll()
.GroupBy(a => a)
.SelectMany(
g =>
g.Where(
a =>
a.Reference == clientReference &&
a.Status == ClientStatus.Live &&
a.AddressReference == g.Max(x => x.AddressReference) &&
a.StartDate == g.Max(x => x.StartDate)))
.SingleOrDefault();
Yukarıdaki lambda ile başladım ama Max () 'i seçmek için sözdizimini denemek ve çalışmak için LINQPad kullanıyorum.
GÜNCELLEME
GroupBy'yi kaldırmak anahtardı.
var all = this.repository.GetAll();
var address = all
.Where(
a =>
a.Reference == clientReference &&
a.Status == ClientStatus.Live &&
a.StartDate == all.Max(x => x.StartDate) &&
a.AddressReference == all.Max(x => x.AddressReference))
.SingleOrDefault();