JetEntityFrameworkProvider icon indicating copy to clipboard operation
JetEntityFrameworkProvider copied to clipboard

CrossApply not implemented in Jet

Open HarisAijaz opened this issue 4 years ago • 0 comments

The following Linq query: DbContext.user.Where(u => u.name.StartsWith(Text) && DbContext.invoice.FirstOrDefault(p => p.user_id == u.id) != null).ToList(); which is giving me the exception "CrossApply not implemented in Jet".

The query is working with SQL Server.

HarisAijaz avatar Oct 26 '20 17:10 HarisAijaz