namespace IBatisNet.DataMapper
{
//
// 摘要:
// Contract for an IBatisNet.DataMapper.ISqlMapper
public interface ISqlMapper
{
ISqlMapSession BeginTransaction();
上面那个方法,没有传入事务隔离级别,事务隔离级别是什么呢
ISqlMapSession BeginTransaction(IsolationLevel isolationLevel);
}