How do you handle data access and ORM (Object-Relational Mapping) in .NET?
For data access, I prefer using Entity Framework Core, a lightweight, cross-platform ORM. It simplifies database interactions, supports various database providers, and enables code-first development. Using EF Core migrations, I can easily version and update the database schema.