/// <summary>
 /// Deprecated Method for adding a new object to the Products EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToProducts(Product product)
 {
     base.AddObject("Products", product);
 }
 /// <summary>
 /// Create a new Product object.
 /// </summary>
 /// <param name="pK_SearchId">Initial value of the PK_SearchId property.</param>
 /// <param name="allYouCanRead">Initial value of the AllYouCanRead property.</param>
 public static Product CreateProduct(global::System.Int64 pK_SearchId, global::System.Boolean allYouCanRead)
 {
     Product product = new Product();
     product.PK_SearchId = pK_SearchId;
     product.AllYouCanRead = allYouCanRead;
     return product;
 }