LikeComparison 1.1.1
See the version list below for details.
dotnet add package LikeComparison --version 1.1.1
NuGet\Install-Package LikeComparison -Version 1.1.1
<PackageReference Include="LikeComparison" Version="1.1.1" />
<PackageVersion Include="LikeComparison" Version="1.1.1" />
<PackageReference Include="LikeComparison" />
paket add LikeComparison --version 1.1.1
#r "nuget: LikeComparison, 1.1.1"
#:package LikeComparison@1.1.1
#addin nuget:?package=LikeComparison&version=1.1.1
#tool nuget:?package=LikeComparison&version=1.1.1
LikeComparison
LikeComparison is a library that allows you to compare a string expression to a pattern in an "SQL LIKE" expression.
It supports many LIKE operator syntax:
- Visual Basic,
- Transact-SQL (with ESCAPE),
- PostgreSQL (both LIKE and ILIKE).
Using Like method on strings
You can simply use extension method on String class:
using LikeComparison.VisualBasic;
string matchExpression = "abcdef";
string pattern = "a*";
bool isMatched = matchExpression.Like(pattern);
or
using LikeComparison.TransactSql;
string matchExpression = "abcdef";
string pattern = "a%";
// common use
bool isMatched = matchExpression.Like(pattern);
// or with escape character
bool isMatched = matchExpression.Like(pattern, escapeCharacter: "/");
or
using LikeComparison.PostgreSql;
string matchExpression = "abcdef";
string pattern = "a%";
// case-insensitive
bool isMatched = matchExpression.ILike(pattern);
// or case-sensitive
bool isMatched = matchExpression.Like(pattern);
Using IsLike method on assertions
You can simply use extension method on Assert class:
using LikeComparison.VisualBasic;
string matchExpression = "abcdef";
string pattern = "a*";
Assert.That.IsLike(matchExpression, pattern);
or
using LikeComparison.TransactSql;
string matchExpression = "abcdef";
string pattern = "a%";
// common use
Assert.That.IsLike(matchExpression, pattern);
// or with escape character
Assert.That.IsLike(matchExpression, pattern, escapeCharacter: "/");
or
using LikeComparison.PostgreSql;
string matchExpression = "abcdef";
string pattern = "a%";
// case-insensitive
Assert.That.IsILike(matchExpression, pattern);
// or case-sensitive
Assert.That.IsLike(matchExpression, pattern);
Supported syntax
Visual Basic
https://docs.microsoft.com/en-us/office/vba/language/reference/user-interface-help/like-operator
* ? [ ] ^ #
Transact-SQL
https://docs.microsoft.com/en-us/sql/t-sql/language-elements/like-transact-sql
% _ [ ] !
PostgreSQL
https://www.postgresql.org/docs/current/functions-matching.html
% _
Supported targets
.NET 6.0
- Recommended.
- Default target for LikeComparison.Tests.
.NET 5.0
- Supported.
.NET Core 3.1
- Supported.
.NET Framework 4.8
- Experimental supported with C# 8.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp3.1 is compatible. |
| .NET Framework | net48 is compatible. net481 was computed. |
-
.NETCoreApp 3.1
- MSTest.TestFramework (>= 2.2.8)
-
.NETFramework 4.8
- MSTest.TestFramework (>= 2.2.8)
-
net5.0
- MSTest.TestFramework (>= 2.2.8)
-
net6.0
- MSTest.TestFramework (>= 2.2.8)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on LikeComparison:
| Package | Downloads |
|---|---|
|
LikeComparison.MSTest
LikeComparison is a library that allows you to compare a string expression to a pattern in an "SQL LIKE" expression. It supports many LIKE operator syntax: Visual Basic, Transact-SQL, PostgreSQL. |
|
|
LikeComparison.Shouldly
LikeComparison is a library that allows you to compare a string expression to a pattern in an "SQL LIKE" expression. It supports many LIKE operator syntax: Visual Basic, Transact-SQL, PostgreSQL. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.3.2 | 395 | 6/24/2025 |
| 2.3.1 | 408 | 3/13/2025 |
| 2.3.0 | 392 | 11/20/2024 |
| 2.2.1 | 679 | 9/19/2024 |
| 2.2.0 | 1,283 | 1/23/2024 |
| 2.1.0 | 1,038 | 10/8/2023 |
| 2.0.1 | 493 | 7/26/2023 |
| 2.0.0 | 528 | 4/4/2023 |
| 1.3.3 | 1,607 | 3/16/2023 |
| 1.3.2 | 336 | 3/2/2023 |
| 1.3.1 | 596 | 11/27/2022 |
| 1.3.0 | 459 | 11/13/2022 |
| 1.2.1 | 846 | 6/21/2022 |
| 1.2.0 | 547 | 6/21/2022 |
| 1.1.1 | 1,795 | 3/9/2022 |
| 1.1.0 | 547 | 3/8/2022 |
| 1.0.13 | 597 | 2/12/2022 |
| 1.0.12 | 585 | 1/30/2022 |
| 1.0.11 | 558 | 1/16/2022 |
| 1.0.10 | 696 | 12/27/2021 |
| 1.0.9 | 406 | 12/15/2021 |
| 1.0.8 | 408 | 12/13/2021 |
| 1.0.7 | 432 | 12/8/2021 |
| 1.0.6 | 469 | 11/10/2021 |
| 1.0.5 | 463 | 11/3/2021 |
| 1.0.4 | 561 | 10/30/2021 |
| 1.0.3 | 582 | 10/23/2021 |
| 1.0.2 | 592 | 10/23/2021 |
| 1.0.1 | 461 | 10/19/2021 |
| 1.0.0 | 1,250 | 10/2/2021 |