Is it possible to use the OrmLite extension method UpdateOnly to update multiple fields at once?
The example given in the documentation is:
db.UpdateOnly(new Person { FirstName = "JJ" }, p => p.FirstName);
Can I provide an expression with multiple fields in it? If so, what's the best operator to use given that the fields may be different data types.