StevenGilligan/AutoCompare

Compile ahead of time

Closed this issue · 0 comments

Using fluent configuration, provide a way to compile an object Comparer ahead of time, for example :

Comparer.Configure<MyType>()
    .Ignore(x => x.Property)
    .Compile.Now();

Async :

Comparer.Configure<MyType>()
    .Compile.Async();