Files
mixtape/zero.Raven/ZeroDocumentSession.cs
T
2022-12-07 15:20:53 +01:00

33 lines
760 B
C#

using Raven.Client.Documents;
using Raven.Client.Documents.Session;
namespace zero.Raven;
public class ZeroDocumentSession : AsyncDocumentSession, IZeroDocumentSession
{
public IDocumentSession Synchronous => _synchronous ?? (_synchronous = DocumentStore.OpenSession(DatabaseName));
IDocumentSession _synchronous;
public ZeroDocumentSession(DocumentStore documentStore, Guid id, SessionOptions options, string coreDatabase = null) :
base(documentStore, id, options)
{
}
public bool IsDisposed { get; set; }
public override void Dispose()
{
_synchronous?.Dispose();
base.Dispose();
}
}
public interface IZeroDocumentSession : IAsyncDocumentSession
{
IDocumentSession Synchronous { get; }
bool IsDisposed { get; }
}