Migrating a .Net project to dotnet core
Migrating SearchExtensions from a dotNet project to dotnet core
Migrating SearchExtensions from a dotNet project to dotnet core
Improved Levenshtein string search for use with Entityframework or other IQueryable data sets
Celebrating 10000 downloads of SearchExtensions whilst calling out for new features and ideas
NinjaNye.SearchExtensions now supports searching child collections for IQueryable meaning you can perform complex searches that automatically translate to the SQL
Ability to search child collections now supported in Ninjanye.SearchExtensions
Review of the new SearchExtensions feature that allows users to perform searches based on matching the whole word only.
Description and example usage of the primitive type search support provided by NinjaNye.SearchExtensions
Overview of the recent Levenshtein support added to NinjaNye Search Extensions nuget package
Performance analysis of the new Soundex search functionality
Describing how the new Soundex search functionality is used in NinjaNye.SearchExtensions
Release 1.0 of NinjaNye.SearchExtensions is now available. Updates include removing obsolete methods, promote the fluent Search methods out of the NinjaNye.SearchExtensions.Fluent namespace, remove the specific SearchAll() method in favour of utilising .Search() and performance improvements
The latest release of NinjaNye.SearchExtensions supports Ranked Searches as part of the fluent API. This post describes how to use this new api method as well as inspects the sql it produces
Anouncing the release of NinjaNye.SearchExtensions (SearchExtensions) new fluent API. Linq search contains extension method for use with Entity Framework, Linq to Entities, Linq to Objects
Describes the latest method signature changes implemented in NinjaNye.SearchExtensions.
Ninjanye.SearchExtensions describes the search all feature for a given type
How to integrate Ninjanye.SearchExtensions nuget package into my blogs search engine.
Introduction into RankedSearch functionality provided by NinjaNye.SearchExtensions nuget package.
A handy extension method enabling the ability to perform a replace on a string whole using the StringComparison enumeration
Creating an IQueryable search extension method that allows dynamic searching with ranked results via occurrence counts. This solution is written in C# using the power of expression trees.
I recently added a new method to my library of IQueryable extensions methods built using expression trees. The library is geared towards enabling search functionality via extension methods.
Continuing my latest theme of search extension methods, my new method allows users to search a property against multiple search terms. The code has been added to my existing search extensions project which can be found on github by going to https://github.com/ninjanye/SearchExtensions
In this post I begin to create a generic search extension method using expression trees. The result is a cool extension method that can be applied to any IQueryable. More to follow as I expand on the method.