Re: Simple search site help
Yes, this is possible. When creating the QueryObject, instead:
RangerMSP.ObjectQuery<RangerMSP.Account> accountSearch = new RangerMSP.ObjectQuery<RangerMSP.Account>();
one can call:
RangerMSP.ObjectQuery<RangerMSP.Account> accountSearch = new RangerMSP.ObjectQuery<RangerMSP.Account>(linkOR);
Hope this helps.
Yes, this is possible. When creating the QueryObject, instead:
RangerMSP.ObjectQuery<RangerMSP.Account> accountSearch = new RangerMSP.ObjectQuery<RangerMSP.Account>();
one can call:
RangerMSP.ObjectQuery<RangerMSP.Account> accountSearch = new RangerMSP.ObjectQuery<RangerMSP.Account>(linkOR);
Hope this helps.
Comment