SimplifiedSearch 1.0.0
See the version list below for details.
dotnet add package SimplifiedSearch --version 1.0.0
NuGet\Install-Package SimplifiedSearch -Version 1.0.0
<PackageReference Include="SimplifiedSearch" Version="1.0.0" />
paket add SimplifiedSearch --version 1.0.0
#r "nuget: SimplifiedSearch, 1.0.0"
// Install SimplifiedSearch as a Cake Addin
#addin nuget:?package=SimplifiedSearch&version=1.0.0
// Install SimplifiedSearch as a Cake Tool
#tool nuget:?package=SimplifiedSearch&version=1.0.0
See Acknowledgements for additional license information covering parts of the project.
SimplifiedSearch
Simple way to add ranked fuzzy matching search.
For when you have up to a few thousand products, locations or similar and want to add a search that most users will see as smart, with minimal work.
Intended use case
Searching through lists of short phrases like country names or the subject line in emails.
.NET support
Tested with: NETCOREAPP3.1, NET5.0, NET6.0
Quickstart
Install
PM> Install-Package SimplifiedSearch
Code
Use extension method .SimplifiedSearchAsync(searchTerm, propertyToSearchLambda)
.
propertyToSearchLambda
is optional. When missing, all properties will be searched (or the value, if the value is string
, Enum
, int
, etc).
using SimplifiedSearch;
IList<Country> countries = GetListOfCountries();
IList<Country> matches = await countries.SimplifiedSearchAsync("tailand", x => x.CountryName);
foreach (var country in matches)
{
Console.WriteLine($"# {country.CountryName}");
}
// output:
// # Thailand
// # Taiwan
Acknowledgements
https://github.com/apache/lucenenet
Lucenenet is the main inspiration for SimplifiedSearch.
SimplifiedSearch was started with the goal of delivering similar results to a spesific setup of Lucene analyzer and query.
https://github.com/ninjanye/SearchExtensions
SimplifiedSearch was inspired by SearchExtensions, and delivers a simpler (and less configurable) experience.
https://github.com/DanHarltey/Fastenshtein
Provides the distance calculation needed for fuzzy search.
https://github.com/DanHarltey/Fastenshtein/blob/master/LICENSE.
https://github.com/annexare/Countries
For test data tests/data/annexare/Countries/*
.
tests/data/annexare/Countries/LICENSE.
https://github.com/CivilServiceUSA/us-states
For test data tests/data/CivilServiceUSA/us-states/*
.
tests/data/CivilServiceUSA/us-states/LICENSE.
https://github.com/linanqiu/reddit-dataset
For test data tests/data/linanqiu/reddit-dataset/*
.
tests/data/linanqiu/reddit-dataset/README.md (se bottom of readme).
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- Fastenshtein (>= 1.0.0.8)
-
.NETStandard 2.1
- Fastenshtein (>= 1.0.0.8)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.3.0-beta1 | 45 | 12/19/2022 |
1.2.0 | 98 | 12/16/2022 |
1.2.0-beta.2 | 59 | 9/10/2022 |
1.2.0-beta.1 | 69 | 8/20/2022 |
1.1.5 | 481 | 1/9/2022 |
1.1.4 | 195 | 12/2/2021 |
1.1.3 | 175 | 12/1/2021 |
1.1.2 | 1,277 | 11/28/2021 |
1.1.0 | 1,055 | 11/20/2021 |
1.0.0 | 213 | 11/16/2021 |