public void Update(Product product)
 {
     Product pro = GetById(product.PK_SearchId);
     pro.Title = product.Title;
     _entities.SaveChanges();
 }
 /// <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);
 }
 public void Create(Product newProduct)
 {
     _entities.Products.AddObject(newProduct);
     _entities.SaveChanges();
 }
 /// <summary>
 /// Create a new Product object.
 /// </summary>
 /// <param name="pK_SearchId">Initial value of the PK_SearchId property.</param>
 /// <param name="isAllYouCanRead">Initial value of the IsAllYouCanRead property.</param>
 public static Product CreateProduct(global::System.Int64 pK_SearchId, global::System.Boolean isAllYouCanRead)
 {
     Product product = new Product();
     product.PK_SearchId = pK_SearchId;
     product.IsAllYouCanRead = isAllYouCanRead;
     return product;
 }