Testing.AdventureWorksEntities.AddToProductReviews C# (CSharp) Method

AddToProductReviews() public method

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