Scalien.StringRangeParams.StartKey C# (CSharp) Méthode

StartKey() public méthode

Specify the start key parameter for iteration.
Iteration will start at start key, or the first key greater than start key.
public StartKey ( string startKey ) : StringRangeParams
startKey string The start key parameter as a string.
Résultat StringRangeParams
        public StringRangeParams StartKey(string startKey)
        {
            this.startKey = startKey;
            return this;
        }

Usage Example

Exemple #1
0
        public void ListTest3(Table tbl, uint num)
        {
            uint count = 100;

            StringRangeParams ps = new StringRangeParams();
            ps.StartKey(Utils.Id(100));
            ps.Count(count);
            ps.Backward();

            uint expected = count;
            PerformListTest(tbl, ps, expected);
        }
All Usage Examples Of Scalien.StringRangeParams::StartKey