@accounts.UserProfiles.ElementAt(item.AuthorID).ProfilePicture
LINQ to Entities无法识别该方法 “Collision.Models.UserProfile ElementAt的[用户配置](System.Linq.IQueryable`1 [Collision.Models.UserProfile] 'int32)'方法,并且此方法无法转换为商店 表达
答案 0 :(得分:1)
LINQ to Entities中不支持ElementAt
和ElementAtOrDefault
。
您可以在MSDN上找到所有受支持方法的列表:Supported and Unsupported LINQ Methods (LINQ to Entities)
答案 1 :(得分:1)