score:1

context.books
    .include("borrows")  // if you have lazy loading
    .where(..some condition...)
    .select(b => new bookmodel
    {
       bookname = b.name,
       borrows = b.borrows.select(...select properties...).tolist()
    }

Related Query

More Query from same tag