You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Framework/Connected.Expressions/Expressions/OuterJoinedExpression.cs

17 lines
390 B

using System.Linq.Expressions;
namespace Connected.Expressions;
public sealed class OuterJoinedExpression : DatabaseExpression
{
public OuterJoinedExpression(Expression test, Expression expression)
: base(DatabaseExpressionType.OuterJoined, expression.Type)
{
Test = test;
Expression = expression;
}
public Expression Test { get; }
public Expression Expression { get; }
}