SQLiteFunction not working so how to override function for collate

SUAT SUPHI 61 Reputation points
2022-09-29T13:06:11.367+00:00

Hi

SQLiteFunction not working so how to override function like below

[SQLiteFunction(FuncType = FunctionType.Collation, Name = "UTF8CI")]  
public class SQLiteCaseInsensitiveCollation : SQLiteFunction  
{  
    public override int Compare(string x, string y)  
    {  
        return string.Compare(x, y, true, new CultureInfo("tr-TR"));  
    }  
}  
Entity Framework Core
Entity Framework Core
A lightweight, extensible, open-source, and cross-platform version of the Entity Framework data access technology.
697 questions
ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,166 questions
0 comments No comments
{count} votes

0 additional answers

Sort by: Most helpful