using System;
using System.Collections.Generic;
using System.Text;
namespace CYQ.Data
{
///
/// MAction Insert Options
/// MAction的Insert方法的返回值选项
///
public enum InsertOp
{
///
/// only insert,no return autoIncrement id
/// 使用此项:插入数据后[MSSQL会返回ID,其它数据库则不会返回ID]
///
None,
///
/// insert and return autoincrement id (default option)
/// 使用此项:插入数据后会返回ID[默认选项]。
///
ID,
///
/// insert and select top 1 data to fill row
/// 使用此项:插入数据后,会根据返回ID进行查询后填充数据行。
///
Fill,
}
}