I using entity framework for my database and select or/and include revealing so many data so basically i'm looking for query like this:
var result = DbContext.products
.select(p=> new {
p.Id,
p.Name,
p.Notes
.select(n=> new {
n.date,
n.text
}
});