This question already has an answer here:
I get an error when I try to run the following query in LINQ to Entities:
public IEnumerable TestOne2()
{
var query = this.Context.CmnAddressCities
.Join(this.Context.CmnAddressStates,
p => p.StateID, q => q.StateID,
(p, q) => SelectSearchColumns)
.ToList();
return query;
}
public Expression<Func<CmnAddressCity,CmnAddressState, dynamic>>
SelectSearchColumns = (e,r) => new
{
CityID = e.CityID,
CityName = e.CityName,
StateName=r.StateName,
};
Error Message:
The LINQ expression node type 'Lambda' is not supported in LINQ to Entities.
Want to know why this error arise,how to solve this.
If have any query please ask ,thanks in advanced.