私はこの状況を持っています:
select max(id) from OTX group by AccNo
LINQ クエリに変換したいのですが、うまくいきません。これを試してみましたが、Message = "The member 'XX' has no supported translation to SQL." と表示されます。
var result = from otx in datacTx.OTX
group otxCf by otxCf.AccNo
into Client
select Client.Max().ID;