triggertype.cs

来自「微软的行业应用解决方案示例」· CS 代码 · 共 28 行

CS
28
字号
using System;
using System.Linq;
using System.Collections.Generic;
using System.Text;

namespace Microsoft.Mobile.Data
{
    /// <summary>
    /// The type of command that was executed either a delete, insert or 
    /// update.
    /// </summary>
    public enum TriggerType
    {
        /// <summary>
        /// Delete SQL command executed
        /// </summary>
        Delete,
        /// <summary>
        /// Insert SQL command executed
        /// </summary>
        Insert,
        /// <summary>
        /// Update SQL command executed
        /// </summary>
        Update
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?