Inheritance: global::System.Data.Objects.DataClasses.EntityObject
 /// <summary>
 /// Create a new Book object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="pages">Initial value of the Pages property.</param>
 public static Book CreateBook(global::System.Int32 id, global::System.String name, global::System.Int32 pages)
 {
     Book book = new Book();
     book.Id = id;
     book.Name = name;
     book.Pages = pages;
     return book;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Books EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToBooks(Book book)
 {
     base.AddObject("Books", book);
 }