/// <summary> /// Initialize a new transaction. Transaction are created "per-thread". There is only one single transaction per thread. /// Return true if transaction was created or false if current thread already in a transaction. /// </summary> public bool BeginTrans() => _engine.BeginTrans();
public bool BeginTrans() { return(_engine.BeginTrans()); }