/// <summary>
 /// Deprecated Method for adding a new object to the Parameters EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToParameters(Parameter parameter)
 {
     base.AddObject("Parameters", parameter);
 }
 /// <summary>
 /// Create a new Parameter object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="searchValues_Id">Initial value of the SearchValues_Id property.</param>
 /// <param name="searchNames_Id">Initial value of the SearchNames_Id property.</param>
 /// <param name="featured">Initial value of the Featured property.</param>
 /// <param name="hidden">Initial value of the Hidden property.</param>
 /// <param name="item_Id">Initial value of the Item_Id property.</param>
 public static Parameter CreateParameter(global::System.Int32 id, global::System.Int32 searchValues_Id, global::System.Int32 searchNames_Id, global::System.Boolean featured, global::System.Boolean hidden, global::System.Int32 item_Id)
 {
     Parameter parameter = new Parameter();
     parameter.Id = id;
     parameter.SearchValues_Id = searchValues_Id;
     parameter.SearchNames_Id = searchNames_Id;
     parameter.Featured = featured;
     parameter.Hidden = hidden;
     parameter.Item_Id = item_Id;
     return parameter;
 }