Hi Team,

Is there any plan to support LINQ queries like:

var result = cache.AsCacheQueryable
  .Where(entry => !entry.Value.Dirty.HasValue)
  .GroupBy(entry => entry.Value.ContractId)
  .Select(group => group.OrderByDescending(entry =>
entry.Value.Version).First().Key)
  .ToList();

It looks like such queries need be transformed to complex SQL like `SELECT
... FROM (SELECT ... FROM (SELECT ...) JOIN ...)`. And probably that's why
it's not easy to implement such functionality, but users quite often want to
use that.

Will it be implemented in the near future? Is there any ticket for that?

Thanks.

Best Regards,
Roman 



--
Sent from: http://apache-ignite-developers.2346864.n4.nabble.com/

Reply via email to