Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Business Process
Message
 
À
22/02/2011 12:18:09
Information générale
Forum:
ASP.NET
Catégorie:
The Mere Mortals .NET Framework
Divers
Thread ID:
01501252
Message ID:
01501286
Vues:
36
Frank,

That seems about right. Make sure you also add to the child business objects the following in the HookConstructor method:
protected override void HookConstructor()
		{
            this.AutoSaveOnParentSaved = true;
            this.AutoCancelOnParentCancel = true;
            this.AutoDeleteOnParentDeleted = true;
            this.AutoEmptyOnParentAdded = true;
            this.ForeignParentKeyField = "insert FK here";
		}
The only time the above code is used is when you use the RegisterChildBizObj method.

Don't know the difference between SaveEntity and SaveDataSet as I always use SaveEntity.

Bob

>Thanks Bob,
>
>so my code should look like this?
>
>
        protected override void DefineParticipatingObjects()
>        {
>            this.oPolicyHeader = (PolicyHeader)this.RegisterBizObj(new PolicyHeader());
>            this.oPolicy = (Policy)this.RegisterBizObj(new Policy());
>            this.oPolicyLoan = (PolicyLoan)this.RegisterBizObj(new PolicyLoan());
>            this.oReceipt = (Receipt)this.RegisterBizObj(new Receipt());
>            this.oReceiptDetail = (ReceiptDetail)this.RegisterBizObj(new ReceiptDetail());
>
>            this.oPolicyHeader.RegisterChildBizObj(this.oPolicy);
>            this.oPolicyHeader.RegisterChildBizObj(this.oPolicyLoan);
>            this.oPolicyHeader.RegisterChildBizObj(this.oReceipt);
>            this.oReceipt.RegisterChildBizObj(this.oReceiptDetail);
>        }
>
>Then when I want to save I just do:
>
>
mmSaveDataResult result = oPolicyHeader.SaveEntity();
>
>How do I decide if I want to call SaveDataSet or SaveEntity or something else?
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform