linq lambda select save into custom class object
The simplest approach here is to fetch into an anonymous type and then do the rest in-process via AsEnumerable: return (from p in _db.P join t in _db.TP on p.Id equals…
The simplest approach here is to fetch into an anonymous type and then do the rest in-process via AsEnumerable: return (from p in _db.P join t in _db.TP on p.Id equals…