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