Subscribe
Exact vector search is a solid starting point. Once volume grows, approximate vector search with vector indexes a offer fast alternative with relevant results instead of exhaustive comparison on every row.
Facet is a powerful source generator tool that can help you improve your mapping code. It's easy to use, test and integrate with other libraries.
EF Core 10 introduces named query filters, allowing multiple filters per entity and selective bypass so you can disable only the filters you need.
Domain models can be passive data containers or active business objects, a practical approach is starting with anemic models and evolving them into rich ones as the domain grows in complexity.
Full-text search in EF Core 10 combined with Azure Cosmos DB offers a powerful and efficient way to implement advanced text search in modern applications.
Scoped services cannot be injected directly into singletons in .NET Core, but by creating a manual service scope you can safely resolve dependencies.
The new JSON data type in SQL Server, combined with EF Core’s ExecuteUpdate, brings a powerful and efficient way to perform bulk updates.
Keyed Services make the built-in .NET DI container far more flexible when working with multiple implementations of the same interface.