/// <summary>
 /// Deprecated Method for adding a new object to the FoodFavorites EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToFoodFavorites(FoodFavorite foodFavorite)
 {
     base.AddObject("FoodFavorites", foodFavorite);
 }
 /// <summary>
 /// Create a new FoodFavorite object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="title">Initial value of the Title property.</param>
 /// <param name="mealType">Initial value of the MealType property.</param>
 public static FoodFavorite CreateFoodFavorite(global::System.Int32 id, global::System.String title, global::System.Int32 mealType)
 {
     FoodFavorite foodFavorite = new FoodFavorite();
     foodFavorite.Id = id;
     foodFavorite.Title = title;
     foodFavorite.MealType = mealType;
     return foodFavorite;
 }