how to implement BusinessObject's Child Object not ChildList

how to implement BusinessObject's Child Object not ChildList

Old forum URL: forums.lhotka.net/forums/t/7350.aspx


niijyeni posted on Tuesday, July 28, 2009

code like this:
public class Root : BusinessBase
{
string a;
string b:
ChildObject1 child1;
ChildObject2 child2;
}

public class ChildObject2 : BusinessBase
{
string c;
string d:
}

public class ChildObject1 : BusinessBase
{
string f;
string g:
}

ajj3085 replied on Tuesday, July 28, 2009

You're probably better off using managed properties for the child objects, as this will handle alot of the plumbing work for you.

Copyright (c) Marimer LLC