Tag: 点燃

Apache Ignite.NET SQL不搜索非英文字符

使用Apache Ignite .NET 2.3.0尝试使用Linq扩展(Apache.Ignite.Linq)进行搜索。 组态: CacheConfiguration = new[] { new CacheConfiguration { QueryEntities = new [] { new QueryEntity(typeof(string), typeof(SecuritiesItem)) { Fields = new [] { new QueryField { Name = “SearchString”, FieldType = typeof(string)} } } } } } SecuritiesItem定义: public class SecuritiesItem { /* all other fields */ public string ShortName { get; […]