Frapid.Mapper.Database.MapperDb.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
            this.Transaction?.Dispose();
            this.Transaction = null;
            this.Connection?.Dispose();
            this.Connection = null;
        }