MonoSoftware.MonoX.DAL.EntityClasses.AdEntity.SetRelatedEntityProperty C# (CSharp) Méthode

SetRelatedEntityProperty() protected méthode

Sets the related entity property to the entity specified. If the property is a collection, it will add the entity specified to that collection.
Used by prefetch path logic.
protected SetRelatedEntityProperty ( string propertyName, IEntityCore entity ) : void
propertyName string Name of the property.
entity IEntityCore Entity to set as an related entity
Résultat void
        protected override void SetRelatedEntityProperty(string propertyName, IEntityCore entity)
        {
            switch(propertyName)
            {
                case "Campaign":
                    this.Campaign = (CampaignEntity)entity;
                    break;
                case "AdPage":
                    this.AdPage.Add((AdPageEntity)entity);
                    break;
                default:
                    this.OnSetRelatedEntityProperty(propertyName, entity);
                    break;
            }
        }