### Configure Entity Framework Core with GenericQueryable Source: https://github.com/iatsuta/anch.framework/blob/main/src/GenericQueryable/readme.md Integrate GenericQueryable with Entity Framework Core by calling `UseGenericQueryable()` on `DbContextOptionsBuilder` during DbContext configuration. This registers the GenericQueryable async query provider for EF Core. ```csharp services.AddDbContext(options => options.UseGenericQueryable()); // Registers GenericQueryable async query provider for EF Core ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.