schotime / NPoco

Simple microORM that maps the results of a query onto a POCO object. Project based on Schotime's branch of PetaPoco
Apache License 2.0
848 stars 302 forks source link

No Tracking for Inserts #680

Open ccasalicchio opened 1 year ago

ccasalicchio commented 1 year ago

Is there a NoTracking configuration option to be set anywhere? Like the QueryTrackingBehavior.NoTracking for EFCore?

tbasallo commented 1 year ago

There's no tracking in NPOCO. So, there's nothing to turn off.

You can start a snapshot to track changes and then use that to only update those columns.