.NET & C# · Entity Framework Core
How should change tracking and AsNoTracking be designed for production in Entity Framework Core?
Use tracking for update workflows and AsNoTracking for read-only projections and list endpoints. The implementation should be justified by measurable requirements, kept as simple as the problem allows, and validated with realistic tests, telemetry, failure handling, and documented tradeoffs.