public IndexKeysBuilder AddDouble(String key, Boolean?docValue = null, String alias = null)
        {
            var doubleKeyInfo = new IndexDoubleKeyInfo
            {
                DocValue = docValue,
                Alias    = alias
            };

            this.keys.Add(key, doubleKeyInfo);

            return(this);
        }
Example #2
0
        public IndexKeysBuilder AddDouble(string key, bool?docValue = null, string alias = null)
        {
            var doubleKeyInfo = new IndexDoubleKeyInfo
            {
                DocValue = docValue,
                Alias    = alias
            };

            keys.Add(key, doubleKeyInfo);

            return(this);
        }