2026-04-14 16:27:27 +10:00
|
|
|
|
namespace PARR.Core.Common.Helpers
|
2023-09-25 11:47:13 +10:00
|
|
|
|
{
|
|
|
|
|
|
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();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|