Ok, this may seem like a silly question, but it is seriously bugging me. Hoping some fellow programmer has a good word for it!
Thing is, I am making an ExpressionBuilder class to help me build up expressions to use with LinqToSQL. And my problem is about how word myself when describing what two methods. And it kind of is a problem in general for me too when talking about it. Here is the issue:
You have an Expression<Func<T, bool>>
, A
. Later you get another one, B
. You are now going to combine that B
with A
using &&
/ AndAlso
or ||
/ OrElse
. So for example like this:
A = A && B;
Alright. So, what did you just do there? What is the verb for what you did with B to A? If you think in a series of this stuff, like A = A && B && C && D && E && ...
, you could sort of say that you then "add" F
to that series. But that wouldn't really be correct either I feel...
What I feed would be most "correct" would be that you take B
and you "and" it to/with A
. You take B
and you "or" it to/with A
. But can "and" and "or" be used as a verb?? Is that considered ok? Feels like incredibly bad English... but maybe it is ok in a programming environment? Or?