suatsuphi

Results 59 comments of suatsuphi

could you fix this thanks

https://github.com/damienbod/AspNetCoreLocalization/blob/a362dc73be13cdfb2ee83bd1a8fa9b440ea00e74/src/Localization.SqlLocalizer/DbStringLocalizer/SqlStringLocalizer.cs#L41 parameters work as follows ``` using System.Linq; public LocalizedString this[string name, params object[] arguments] { get { var localizedString = this[name]; return new LocalizedString(name, String.Format(localizedString.Value, arguments.Select(x => x.ToString()).ToArray()), localizedString.ResourceNotFound);...

there is a picture below sorry second icon is wrong

hi @roji thank you, Yes, problem is about case-insensitive. I know that "The LIKE operator in SQLite doesn't honor collations. The default implementation has the same semantics as the NOCASE...

thank you your attention @roji ``` productsByKeywords = from p in _productRepository.Table where p.Name.Contains(keywords) || (searchDescriptions && (p.ShortDescription.Contains(keywords) || p.FullDescription.Contains(keywords))) || (searchManufacturerPartNumber && p.ManufacturerPartNumber == keywords) || (searchSku && p.Sku...

thank you @roji this is not about bug. this topic type is 'Ask a question'. my code is wrong so it is not working. there is no example about like...

thank you @roji bruce said me [https://learn.microsoft.com/en-us/answers/questions/1160856/createfunction-like](https://learn.microsoft.com/en-us/answers/questions/1160856/createfunction-like) `connection.CreateFunction("like", (string a, string b) => a == b);` but it is not work. I mean I can't change variable a or b...

> as I wrote above, you'll have to provide more information on how this doesn't work. What happens when you try to add ToUpper or Replace? I wanna change non...

thank you @roji I want to remove or change the value from the variable. I can do it for upper or lower so I need an example for like ```...