This question is locked. New answers and comments are not allowed.
hi!
i have a problem of "Outer Apply is not supported by Oracle" when i give this query to the Telerik Grid:
alone, this query work perfectly but when it is executed by the Telerik Grid, i get the "Outer Apply is not supported" exception. Do you have any idea why?
if i remove the "intervenant.Coordonnee.Adresses.FirstOrDefault().Municipalite" from the linq query, the grid is processing the linq query correctly.
So what are you adding to the query that cause the Outer Apply exception?
thank you for the help!
alex
i have a problem of "Outer Apply is not supported by Oracle" when i give this query to the Telerik Grid:
var data = from intervenant inIntervenants select new ViewModels.IntervenantGridViewModel() { IntervenantId = intervenant.IntervenantId, Code = intervenant.Code, Nom = intervenant.Nom, Municipalite = intervenant.Coordonnee.Adresses.FirstOrDefault().Municipalite };var gridModel = new GridModel<ViewModels.IntervenantGridViewModel>(){ Data = data};return View(gridModel);alone, this query work perfectly but when it is executed by the Telerik Grid, i get the "Outer Apply is not supported" exception. Do you have any idea why?
if i remove the "intervenant.Coordonnee.Adresses.FirstOrDefault().Municipalite" from the linq query, the grid is processing the linq query correctly.
So what are you adding to the query that cause the Outer Apply exception?
thank you for the help!
alex