/// <summary> /// Deprecated Method for adding a new object to the article EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToarticle(article article) { base.AddObject("article", article); }
/// <summary> /// Create a new article object. /// </summary> /// <param name="id">Initial value of the id property.</param> /// <param name="title">Initial value of the title property.</param> public static article Createarticle(global::System.Int32 id, global::System.String title) { article article = new article(); article.id = id; article.title = title; return article; }