I would like to search in DB
input line "oxoşil"
I need to look for all these fights. Required search criteria: [o-ö] [x-ks] [o-ö] [ş-s-sh] [i-ı] l
is there any way to this with a t-sql-like statement? or in linq?
I would try to force the sort to accent-insensitive. Of course, choose the one that suits you, not the Latin / General
WHERE myCol COLLATE LATIN1_GENERAL_CI_AI LIKE '%oxoşil%' COLLATE LATIN1_GENERAL_CI_AI
One effective way to do this is to use the CLR stored procedure:
. : TSQL Regular Expression Workbench
Source: https://habr.com/ru/post/1768836/More articles:Reload and update flash files inside window form - c #Reliability php HTTP_HOST & HTTP_REFERER for a critical task - phpAdobe Flex4 mxml schema - flexThe new validator class introduced in the lib directory is not recognized and throws an error - ruby-on-rails-3How can I automatically load DLLs from a subdirectory? - c ++serving various domain-based content in the encoder - phpOpera error: uncaught exception: TypeError: cannot convert 'xxxxxx' to object - javascriptParallelism and synchronization - javajRuby and problems with Warbler, RVM and Tomcat - jrubyVisual Studio memory violation detection duplication on Linux - cAll Articles