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.
15 lines
324 B
15 lines
324 B
using System.Linq.Expressions;
|
|
|
|
namespace Connected.Expressions.Mappings;
|
|
internal sealed class EntityAssignment
|
|
{
|
|
public EntityAssignment(MemberMapping mapping, Expression expression)
|
|
{
|
|
Mapping = mapping;
|
|
Expression = expression;
|
|
}
|
|
|
|
public MemberMapping Mapping { get; }
|
|
public Expression Expression { get; }
|
|
}
|