MySql.Data.Entity.Tests.testEntities.AddToComputers C# (CSharp) Method

AddToComputers() public method

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