/// <summary>
 /// Deprecated Method for adding a new object to the FeedEntries EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToFeedEntries(FeedEntries feedEntries)
 {
     base.AddObject("FeedEntries", feedEntries);
 }
 /// <summary>
 /// Create a new FeedEntries object.
 /// </summary>
 /// <param name="rowGuid">Initial value of the RowGuid property.</param>
 /// <param name="moduleGuid">Initial value of the ModuleGuid property.</param>
 /// <param name="feedGuid">Initial value of the FeedGuid property.</param>
 /// <param name="feedId">Initial value of the FeedId property.</param>
 /// <param name="pubDate">Initial value of the PubDate property.</param>
 /// <param name="title">Initial value of the Title property.</param>
 /// <param name="blogUrl">Initial value of the BlogUrl property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 /// <param name="link">Initial value of the Link property.</param>
 /// <param name="confirmed">Initial value of the Confirmed property.</param>
 /// <param name="entryHash">Initial value of the EntryHash property.</param>
 /// <param name="cachedTimeUtc">Initial value of the CachedTimeUtc property.</param>
 public static FeedEntries CreateFeedEntries(global::System.Guid rowGuid, global::System.Guid moduleGuid, global::System.Guid feedGuid, global::System.Int32 feedId, global::System.DateTime pubDate, global::System.String title, global::System.String blogUrl, global::System.String description, global::System.String link, global::System.Boolean confirmed, global::System.Int32 entryHash, global::System.DateTime cachedTimeUtc)
 {
     FeedEntries feedEntries = new FeedEntries();
     feedEntries.RowGuid = rowGuid;
     feedEntries.ModuleGuid = moduleGuid;
     feedEntries.FeedGuid = feedGuid;
     feedEntries.FeedId = feedId;
     feedEntries.PubDate = pubDate;
     feedEntries.Title = title;
     feedEntries.BlogUrl = blogUrl;
     feedEntries.Description = description;
     feedEntries.Link = link;
     feedEntries.Confirmed = confirmed;
     feedEntries.EntryHash = entryHash;
     feedEntries.CachedTimeUtc = cachedTimeUtc;
     return feedEntries;
 }