コード例 #1
0
 public AggregateExitOperation(IProjection projection)
 {
     string projectionAsString = projection.ToString();
     int start = projectionAsString.IndexOf("(");
     string aggregateName = projectionAsString.Substring(0, start);
     start++;
     int stop = projectionAsString.IndexOf(")");
     _fieldName = projectionAsString.Substring(start, stop - start);
     _aggregate = (SupportedAggregations) Enum.Parse(_aggregate.GetType(), aggregateName.ToUpper());
 }
コード例 #2
0
        public AggregateExitOperation(IProjection projection)
        {
            string projectionAsString = projection.ToString();
            int    start         = projectionAsString.IndexOf("(");
            string aggregateName = projectionAsString.Substring(0, start);

            start++;
            int stop = projectionAsString.IndexOf(")");

            _fieldName = projectionAsString.Substring(start, stop - start);
            _aggregate = (SupportedAggregations)Enum.Parse(_aggregate.GetType(), aggregateName.ToUpper());
        }