Commit bf468ecb authored by VTHIEN's avatar VTHIEN

fixed sieve

parent c24ead45
Pipeline #6528 failed with stages
...@@ -421,7 +421,11 @@ namespace Sieve.Services ...@@ -421,7 +421,11 @@ namespace Sieve.Services
foreach (var filterTermValue1 in filterTerm.Values) foreach (var filterTermValue1 in filterTerm.Values)
{ {
var filterTermValue = (new RemoveVietNamSign()).RemoveSignAndUpperVietnameseString(filterTermValue1); var filterTermValue = filterTermValue1;
if (string.Equals(property.PropertyType.Name, "String", StringComparison.OrdinalIgnoreCase)) {
filterTermValue = (new RemoveVietNamSign()).RemoveSignAndUpperVietnameseString(filterTermValue1);
}
//string filterTermValue = this.RemoveSign4VietnameseString(filterTermValue1); //Added by thien to emove vietnam //string filterTermValue = this.RemoveSign4VietnameseString(filterTermValue1); //Added by thien to emove vietnam
dynamic constantVal = converter.CanConvertFrom(typeof(string)) dynamic constantVal = converter.CanConvertFrom(typeof(string))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment