public virtual IValueBufferFactory CreateValueBufferFactory(
            IValueBufferFactoryFactory valueBufferFactoryFactory)
        {
            Check.NotNull(valueBufferFactoryFactory, nameof(valueBufferFactoryFactory));

            return(valueBufferFactoryFactory.Create(_findExpression.GetProjectionTypes().ToArray(), indexMap: null));
        }
 public IValueBufferFactory CreateValueBufferFactory(IValueBufferFactoryFactory valueBufferFactoryFactory)
 {
     return(valueBufferFactoryFactory.
            Create(_findExpression.GetProjectionTypes().ToArray(), indexMap: null));
 }