Edit: Oops, I meant to post this in the General Forum, not Generated Code forum.
I have a two fields in a database, FirstName and LastName.
Temporarily, I've got something like this for the AccountCollection:
filter.Add(AccountFields.FirstName % searchTerm); // searchterm = "joe smi%"
filter.Add(AccountFields.LastName % searchTerm);
However, I'd like to be able to search their 'fullname' which doesn't exist as a database field. For example, for person Joe Smith, searching 'Joe' finds it, but not when I search 'Joe Sm' (or even 'Joe Smith'. What's an easy way to do this (or point me in the right direction)?
One other question.
I'd like to be able to finetune the filtering a bit more. How can I do something like this:
filter
(A == a) AND (B == b OR C == c OR D == d)
Thank you,
llblgen 2.6 self-servicing
Sql Server 2008