Serialize() public method

public Serialize ( AggregateSnapshot snapshot ) : BsonDocument
snapshot CQRSalad.EventSourcing.AggregateSnapshot
return BsonDocument
Example #1
0
 public async Task SaveSnapshot(AggregateSnapshot snapshot)
 {
     await GetCollection().ReplaceOneAsync(_snapshotSerializer.GetIdFilter(snapshot.AggregateId), _snapshotSerializer.Serialize(snapshot), MockUpsert);
 }