/// <summary>
 ///     Instructs the equivalency comparison to prevent trying to convert the value of
 ///     a specific property on the expectation object before running any of the other steps.
 /// </summary>
 public TSelf WithoutAutoConversionFor(Expression <Func <IMemberInfo, bool> > predicate)
 {
     ConversionSelector.Exclude(predicate);
     return((TSelf)this);
 }