I have a usercontrol in wpf which contains a gridcontrol I've set gridcontrol datasource to a linq to ef join query like this:
var x = from B in x.B join E in X.E on B.E_ID equals E.E_ID
select B
gridcontrol.datasource = x.tolist();
in xaml code I've set grid control columns as this:
first column FieldName = ID
second column FieldName = E.Name
since the second column is binded to E table,the gridcontrol loading is awfuly slow
plz give me a solution to increase the speed