示例#1
0
        private ICommand DeleteRange(XTablePortable table, ICommand command)
        {
            DeleteRangeCommand cmd = (DeleteRangeCommand)command;

            table.Delete(cmd.FromKey, cmd.ToKey);

            return(null);
        }
示例#2
0
        private ICommand Delete(XTablePortable table, ICommand command)
        {
            DeleteCommand cmd = (DeleteCommand)command;

            table.Delete(cmd.Key);

            return(null);
        }
示例#3
0
        private ICommand DeleteRange(XTablePortable table, ICommand command)
        {
            DeleteRangeCommand cmd = (DeleteRangeCommand)command;
            table.Delete(cmd.FromKey, cmd.ToKey);

            return null;
        }
示例#4
0
        private ICommand Delete(XTablePortable table, ICommand command)
        {
            DeleteCommand cmd = (DeleteCommand)command;
            table.Delete(cmd.Key);

            return null;
        }