/// <summary>
 /// Deprecated Method for adding a new object to the FeatureValues EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToFeatureValues(FeatureValue featureValue)
 {
     base.AddObject("FeatureValues", featureValue);
 }
 /// <summary>
 /// Create a new FeatureValue object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="data">Initial value of the Data property.</param>
 /// <param name="productId">Initial value of the ProductId property.</param>
 public static FeatureValue CreateFeatureValue(global::System.Int32 id, global::System.String data, global::System.Int32 productId)
 {
     FeatureValue featureValue = new FeatureValue();
     featureValue.Id = id;
     featureValue.Data = data;
     featureValue.ProductId = productId;
     return featureValue;
 }