Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Entity from multiple tables
Message
De
21/05/2010 13:14:39
 
 
À
21/05/2010 12:32:11
Guy Pardoe
Pardoe Development Corporation
Peterborough, New Hampshire, États-Unis
Information générale
Forum:
ASP.NET
Catégorie:
The Mere Mortals .NET Framework
Divers
Thread ID:
01465461
Message ID:
01465477
Vues:
39
Hi Guy,

I use this features in an App now. If you want to use Entities and do it in the Business Layer, you should create a new Public property for your Entity and lookup through objects. The entity has a GetBusinessObject() Method in order to get the Entity´s Business Object, and the Business Object has a ParentBizObj property, so you can define in your invoice Entity something like:
public string CustName
{
    get
    {
        string custName = ""
        InvoiveObj invObj = this.GetBusinessObject() as InvoiceObj;
        if (invObj != null)
        {
            if (invObj.ParentBizObj != null)
            {
                CustomerObj custObj = invObj.ParentBizObj as CustomerObj;
                if (custObj != null && custObj.Entity != null) custName = custObj.Entity.CustomerName;
            }
        }
        return custName;
    }
}
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform