Testing.AdventureWorksEntities.AddToErrorLogs C# (CSharp) Method

AddToErrorLogs() public method

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