示例#1
0
        public void Delete(TodoEntity todoEntity)
        {
            var operation = TableOperation.Delete(todoEntity);

            todoTable.Execute(operation);
        }
示例#2
0
        public void CreateorUpdate(TodoEntity todoEntity)
        {
            var operation = TableOperation.InsertOrReplace(todoEntity);

            todoTable.Execute(operation);
        }