You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Extends the <see cref="IUnitOfWork"/> to provide database-specific functionality.
/// </summary>
public interface IDatabaseUnitOfWork : IUnitOfWork
{
/// <summary>
/// Gets the underlying <see cref="IDatabase"/>.
/// </summary>
public IDatabase Database { get; }
/// <summary>
/// Gets the optional <see cref="IEventPublisher"/> to be used as a <see href="https://microservices.io/patterns/data/transactional-outbox.html">transactional outbox</see>.