Shaolinq.Persistence.Linq.Optimizers.ReferencedRelatedObject.ReferencedRelatedObject C# (CSharp) Метод

ReferencedRelatedObject() публичный Метод

public ReferencedRelatedObject ( Shaolinq.Persistence.Linq.ObjectPath fullAccessPropertyPath, Shaolinq.Persistence.Linq.ObjectPath includedPropertyPath, Expression sourceParameterExpression ) : System.Collections.Generic
fullAccessPropertyPath Shaolinq.Persistence.Linq.ObjectPath
includedPropertyPath Shaolinq.Persistence.Linq.ObjectPath
sourceParameterExpression System.Linq.Expressions.Expression
Результат System.Collections.Generic
		public ReferencedRelatedObject(PropertyPath fullAccessPropertyPath, PropertyPath includedPropertyPath, Expression sourceParameterExpression)
			: this()
		{
			this.SourceParameterExpression = sourceParameterExpression;
			this.FullAccessPropertyPath = fullAccessPropertyPath;
			this.IncludedPropertyPath = includedPropertyPath;
			this.FullAccessPropertyPath = fullAccessPropertyPath;
			this.TargetExpressions = new HashSet<Expression>(ObjectReferenceIdentityEqualityComparer<Expression>.Default);
		}
	}
ReferencedRelatedObject