I have 2 tables T1 and T2.
T1(users table)
userid
name
address
T2(invoice table)
invoiceid
amount
useridwhoregister
useridwhoupdate
T2Service _t2service = new T2Service();
T2 _t2 = _t2service.DeepLoadByInvoiceId(Convert.ToInt32(Request.Params["id"]), true, DeepLoadType.IncludeChildren, typeof(T1), typeof(T1));
Which would be the syntax for this DeepLoad process? I need to have useridwhoregistersource.userid and useridwhoupdatesource.userid. Or which is the syntax if I need just one of them?
Thanks