How do you manage connection pooling with Azure SQL?
- Use ADO.NET connection pooling (default in .NET).
- Ensure DbContext is scoped per request in ASP.NET Core.
- Example:
services.AddDbContext<MyDbContext>(options =>
options.UseSqlServer(connectionString));