/// <summary> Removes the sync logic for member _currencyRate</summary> /// <param name="signalRelatedEntity">If set to true, it will call the related entity's UnsetRelatedEntity method</param> /// <param name="resetFKFields">if set to true it will also reset the FK fields pointing to the related entity</param> private void DesetupSyncCurrencyRate(bool signalRelatedEntity, bool resetFKFields) { this.PerformDesetupSyncRelatedEntity( _currencyRate, new PropertyChangedEventHandler( OnCurrencyRatePropertyChanged ), "CurrencyRate", AdventureWorks.Dal.Adapter.v50.RelationClasses.StaticSalesOrderHeaderRelations.CurrencyRateEntityUsingCurrencyRateIdStatic, true, signalRelatedEntity, "SalesOrderHeaders", resetFKFields, new int[] { (int)SalesOrderHeaderFieldIndex.CurrencyRateId } ); _currencyRate = null; }
/// <summary> setups the sync logic for member _currencyRate</summary> /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param> private void SetupSyncCurrencyRate(IEntityCore relatedEntity) { if(_currencyRate!=relatedEntity) { DesetupSyncCurrencyRate(true, true); _currencyRate = (CurrencyRateEntity)relatedEntity; this.PerformSetupSyncRelatedEntity( _currencyRate, new PropertyChangedEventHandler( OnCurrencyRatePropertyChanged ), "CurrencyRate", AdventureWorks.Dal.Adapter.v50.RelationClasses.StaticSalesOrderHeaderRelations.CurrencyRateEntityUsingCurrencyRateIdStatic, true, new string[] { } ); } }
protected SalesOrderHeaderEntity(SerializationInfo info, StreamingContext context) : base(info, context) { if(SerializationHelper.Optimization != SerializationOptimization.Fast) { _salesOrderDetails = (EntityCollection<SalesOrderDetailEntity>)info.GetValue("_salesOrderDetails", typeof(EntityCollection<SalesOrderDetailEntity>)); _salesOrderHeaderSalesReasons = (EntityCollection<SalesOrderHeaderSalesReasonEntity>)info.GetValue("_salesOrderHeaderSalesReasons", typeof(EntityCollection<SalesOrderHeaderSalesReasonEntity>)); _address = (AddressEntity)info.GetValue("_address", typeof(AddressEntity)); if(_address!=null) { _address.AfterSave+=new EventHandler(OnEntityAfterSave); } _address_ = (AddressEntity)info.GetValue("_address_", typeof(AddressEntity)); if(_address_!=null) { _address_.AfterSave+=new EventHandler(OnEntityAfterSave); } _creditCard = (CreditCardEntity)info.GetValue("_creditCard", typeof(CreditCardEntity)); if(_creditCard!=null) { _creditCard.AfterSave+=new EventHandler(OnEntityAfterSave); } _currencyRate = (CurrencyRateEntity)info.GetValue("_currencyRate", typeof(CurrencyRateEntity)); if(_currencyRate!=null) { _currencyRate.AfterSave+=new EventHandler(OnEntityAfterSave); } _customer = (CustomerEntity)info.GetValue("_customer", typeof(CustomerEntity)); if(_customer!=null) { _customer.AfterSave+=new EventHandler(OnEntityAfterSave); } _salesPerson = (SalesPersonEntity)info.GetValue("_salesPerson", typeof(SalesPersonEntity)); if(_salesPerson!=null) { _salesPerson.AfterSave+=new EventHandler(OnEntityAfterSave); } _salesTerritory = (SalesTerritoryEntity)info.GetValue("_salesTerritory", typeof(SalesTerritoryEntity)); if(_salesTerritory!=null) { _salesTerritory.AfterSave+=new EventHandler(OnEntityAfterSave); } _shipMethod = (ShipMethodEntity)info.GetValue("_shipMethod", typeof(ShipMethodEntity)); if(_shipMethod!=null) { _shipMethod.AfterSave+=new EventHandler(OnEntityAfterSave); } this.FixupDeserialization(FieldInfoProviderSingleton.GetInstance()); } // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor // __LLBLGENPRO_USER_CODE_REGION_END }