| 4 | namespace ProfileService.Data; |
| 5 | |
| 6 | public class ProfileDbContext(DbContextOptions options) : DbContext(options) |
| 7 | { |
| 8 | public DbSet<UserProfile> UserProfiles { get; set; } |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…