Epiworx.Data.EntityFramework.ApplicationEntities.AddToStories C# (CSharp) Method

AddToStories() public method

Deprecated Method for adding a new object to the Stories EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
public AddToStories ( Story story ) : void
story Story
return void
        public void AddToStories(Story story)
        {
            base.AddObject("Stories", story);
        }