Closed ghost closed 8 years ago
Sorry for a basic question, but I wonder if there is a class in the Serilog libs that is used to fill in the blank.
var r = await _collection.FindAsync<T>(filter);
What class would T be if I am reading from the MongoDB that I just wrote to with Serilog?
T
Try:
Serilog.Events.LogEvent
Sorry for a basic question, but I wonder if there is a class in the Serilog libs that is used to fill in the blank.
var r = await _collection.FindAsync<T>(filter);
What class would
T
be if I am reading from the MongoDB that I just wrote to with Serilog?