/// <summary>
 /// Deprecated Method for adding a new object to the Entries EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToEntries(Entry entry)
 {
     base.AddObject("Entries", entry);
 }
 /// <summary>
 /// Create a new Entry object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="browsers">Initial value of the Browsers property.</param>
 /// <param name="syntax">Initial value of the Syntax property.</param>
 /// <param name="shortDescription">Initial value of the ShortDescription property.</param>
 /// <param name="fullDescription">Initial value of the FullDescription property.</param>
 /// <param name="lastUpdated">Initial value of the LastUpdated property.</param>
 /// <param name="isDeleted">Initial value of the IsDeleted property.</param>
 public static Entry CreateEntry(global::System.Int32 id, global::System.String name, global::System.String browsers, global::System.String syntax, global::System.String shortDescription, global::System.String fullDescription, global::System.Int64 lastUpdated, global::System.Boolean isDeleted)
 {
     Entry entry = new Entry();
     entry.Id = id;
     entry.Name = name;
     entry.Browsers = browsers;
     entry.Syntax = syntax;
     entry.ShortDescription = shortDescription;
     entry.FullDescription = fullDescription;
     entry.LastUpdated = lastUpdated;
     entry.IsDeleted = isDeleted;
     return entry;
 }