I\'m using Serilog with an MS SQL Server sink in my application. Let\'s assume I have defined the following class ...
public class Person { public string First
This is as simple as:
Log.ForContext("BirthDate", person.BirthDate) .Information("New user: {FirstName:l} {LastName:l}", person.FirstName, person.LastName);