次の sql ステートメントを linq に変換する際に助けていただければ幸いです。
select *
from (
select
*,
rn = row_number() over (partition by ClientId order by VisitId)
from
Visit
) activityWithRn
inner join vw_MasterView on vw_MasterView.VisitId = activityWithRn.VisitId
where activityWithRn.rn =3
Linqer (すばらしいプログラム) を使用すると、次のエラーが表示されます。
SQL cannot be converted to LINQ: Field [rn = row_number() over (partition by ClientId order by VisitId)] not found in the current Data Context.
前もって感謝します。