/// <summary> /// Deprecated Method for adding a new object to the Customers EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToCustomers(Customer customer) { base.AddObject("Customers", customer); }
/// <summary> /// Create a new Customer object. /// </summary> /// <param name="userId">Initial value of the UserId property.</param> public static Customer CreateCustomer(global::System.Guid userId) { Customer customer = new Customer(); customer.UserId = userId; return customer; }