hello,
I got a list
VList<View_EmployeeSkill> vList = new VList<View_EmployeeSkill>();
for the 'searchQuery' I use the View_EmployeeSkillFilterBuilder
view_Service = new View_EmployeeSkillService();
the command for getting the result: vList = view_Service.GetPaged(searchQuery.ToString(), null, 0, 100, out count);
As long as i DON'T use the grouping command I got an real value result.
Even in the most simple way using searchQuery.BeginGroup() I receive a return value NULL
--------------------------------------------
watch this:
searchQuery.BeginGroup(string.Empty);
searchQuery.Append("SkillTypeName", "Methodenkompetenz");
searchQuery.EndGroup();
searchQuery.BeginGroup("OR");
searchQuery.Append("OR", "SkillProductName", "SkillPRODUCT93,SkillPRODUCT262", true);
searchQuery.EndGroup();
without the Grouping I get an value (0 or higher) . But with grouping I receive NULL ...
THat was done in reference to http://community.codesmithtools.com/forums/p/3932/24654.aspx#24654
I hope you can fix the problem as soon as possible.
(or tell and describe my fault:)
thanks.