You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: