Testing.AdventureWorksEntities.AddToShoppingCartItems C# (CSharp) Method

AddToShoppingCartItems() public method

Deprecated Method for adding a new object to the ShoppingCartItems EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
public AddToShoppingCartItems ( ShoppingCartItem shoppingCartItem ) : void
shoppingCartItem ShoppingCartItem
return void
        public void AddToShoppingCartItems(ShoppingCartItem shoppingCartItem)
        {
            base.AddObject("ShoppingCartItems", shoppingCartItem);
        }
    
AdventureWorksEntities