Beispiel #1
0
 public BillDetails GetBill(int id)
 {
     return(Bills
            .Include(x => x.Tags)
            .Single(x => x.Id == id).ToModelWithItems());
 }