插入(Insert)的深入用法

--返回影响行数

ORM.Insert(model);

--返回自增的ID

ORM.Insert(model, true);

--分表插入(根据日期分表,以每个月一张表为例)

ORM.Insert(model, true, true, new MSplitTableConfig { Type = ESplitTableType.DateTime, DateTimeConfig = "yyyyMM" });