/// <summary> /// 用于向 Comments EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// </summary> public void AddToComments(Comment comment) { base.AddObject("Comments", comment); }
/// <summary> /// 创建新的 Comment 对象。 /// </summary> /// <param name="id">Id 属性的初始值。</param> public static Comment CreateComment(global::System.Int32 id) { Comment comment = new Comment(); comment.Id = id; return comment; }