/// <summary> /// The primary key of the item from which to continue an earlier operation. This value is returned in the stopKey if that operation was interrupted before completion; either because of the result set size or because of the setting for limit. /// </summary> public ItemQueryRequest <T> WithStartKey(DataKey startKey) { _startKey = startKey; return(this); }
/// <summary> /// creates a new query for the primary key /// </summary> /// <param name="primaryKey"></param> public ItemQueryRequest(object primaryKey) { _datakey = new DataKey(primaryKey); }
/// <summary> /// The primary key of the item from which to continue an earlier operation. This value is returned in the stopKey if that operation was interrupted before completion; either because of the result set size or because of the setting for limit. /// </summary> public ItemQueryRequest <T> WithStartKey(object primaryKey, object secondaryKey) { _startKey = new DataKey(primaryKey, secondaryKey); return(this); }
/// <summary> /// The primary key of the item from which to continue an earlier operation. This value is returned in the stopKey if that operation was interrupted before completion; either because of the result set size or because of the setting for limit. /// </summary> public ItemListRequest <T> WithStartKey(object primaryKey) { _startKey = new DataKey(primaryKey); return(this); }