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.
16 lines
385 B
16 lines
385 B
using System.Linq.Expressions;
|
|
|
|
namespace Connected.Expressions;
|
|
|
|
public sealed class EntityExpression : DatabaseExpression
|
|
{
|
|
public EntityExpression(Type entityType, Expression expression)
|
|
: base(DatabaseExpressionType.Entity, expression.Type)
|
|
{
|
|
EntityType = entityType;
|
|
Expression = expression;
|
|
}
|
|
|
|
public Type EntityType { get; }
|
|
public Expression Expression { get; }
|
|
} |