Out of Memory Lambda Compile versus inline delegates
问题 Using 4.5.1 with an application that on the server side shuffles chart data with many REST requests simultaneously. Use IQueryable to build queries. For example, I originally had the following: var query = ctx.Respondents .Join( ctx.Respondents, other => other.RespondentId, res => res.RespondentId, (other, res) => new ChartJoin { Respondent = res, Occasion = null, BrandVisited = null, BrandInfo = null, Party = null, Item = null } ) . // bunch of other joins filling out the ChartJoin .Where(x