LinqElementAtExpression is one of more than 130 LINQ expressions.
LinqElementAtExpression is used to compare boolean parameters and return the AND result. When all booleans are true, the AND result is true.
if (left == null || right == null)
return null;
return new AndExpression(left, right);
If two booleans (left and right) are both not null (line 1), the AND of these two booleans is returned (line 4).
Article ID: 300
Created: Thu, Dec 5, 2019
Last Updated: Thu, Dec 5, 2019
Online URL: https://wiki-ai-framework.abstract-it.nl/article/linqelementatexpression-300.html