feat: Перенесены внешние сервисы в Infrastructure. Удалены лишние проекты.
This commit is contained in:
15
PARR.Core/Common/Helpers/SqlHelpers.cs
Normal file
15
PARR.Core/Common/Helpers/SqlHelpers.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace PARR.Core.Common.Helpers
|
||||
{
|
||||
public static class SqlHelpers
|
||||
{
|
||||
/// <summary>
|
||||
/// Преобразует Regex в Like для SQL
|
||||
/// </summary>
|
||||
/// <param name="regexPattern"></param>
|
||||
/// <returns></returns>
|
||||
public static string RegexToLike(string regexPattern)
|
||||
{
|
||||
return regexPattern.Replace("*", "%").ToLower();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user