Testing.AdventureWorksEntities.AddToCurrencyRates C# (CSharp) Method

AddToCurrencyRates() public method

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