Example #1
0
 /// <summary>
 /// 创建新的 Post 对象。
 /// </summary>
 /// <param name="id">Id 属性的初始值。</param>
 /// <param name="title">Title 属性的初始值。</param>
 /// <param name="createDate">CreateDate 属性的初始值。</param>
 /// <param name="poster">Poster 属性的初始值。</param>
 public static Post CreatePost(global::System.Int64 id, global::System.String title, global::System.DateTime createDate, global::System.String poster)
 {
     Post post = new Post();
     post.Id = id;
     post.Title = title;
     post.CreateDate = createDate;
     post.Poster = poster;
     return post;
 }
Example #2
0
 /// <summary>
 /// 用于向 Post EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet&lt;T&gt; 属性的 .Add 方法。
 /// </summary>
 public void AddToPost(Post post)
 {
     base.AddObject("Post", post);
 }