--运行存储过程
--参数1:存储过程名称
--参数2:存储过程参数
--参数3:数据库名称
ORM.RunProc("MyProc", new { username = "fanrong" , password = "666666" }, EDataBase.数据库名称);
3.2.0.0 版本新增【链式语法】:
ORM.Build<T>()
.RunProc("MyProc", new { username = "fanrong" , password = "666666" })
.ToList();