Exemplo n.º 1
0
 public IList <Order> GetClientsCommandes(string IDclient)
 {
     return(Commande.AsNoTracking().Include(c => c.Customer).Where(c => c.Customer.CustomerId == IDclient).ToList());
 }