Thanks Trent; I'm truly enjoying the power that SF offers, as I'm getting into more features.
you call the FillByParentPrimaryKey method then there is no reason to even set the ChildAutoFilterOption property at this point.
This point cleared up my confusion. Let me ask you this, as I looked at the samples I see you mostly approach getting the children in a different way (rather using this property), which once the user lands on a specific parent record, then you fill the child only for that parent.
As a rule of thumb, which is a preferred way:
1) Retrieving children per parent:
(pro) This option fetches small number of records from the server.
(Con) in 3-tier too many round trips to the server
2) Retrieving all children:
(Pro) A lot less round trips to the server
(con) Heavy up front load, and possibly could use up too much client's memory.
Any suggestion or guidelines is appreciated!
Thanks!
..ßen