Skip to content

Commit b6229fa

Browse files
committed
#2146 in search table, id is now a number and not a string
1 parent 2c4a70a commit b6229fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/DDM/BExIS.Ddm.Providers.LuceneProvider/Searcher/BexisIndexSearcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ public static SearchResult search(Query query, List<XmlNode> headerItemXmlNodeLi
263263
Row r = new Row();
264264
List<object> ValueList = new List<object>();
265265
ValueList = new List<object>();
266-
ValueList.Add(doc.Get("doc_id"));
266+
ValueList.Add(Int64.Parse(doc.Get("doc_id")));
267267
ValueList.Add(doc.Get("gen_entity_name"));
268268
ValueList.Add(doc.Get("gen_entitytemplate"));
269269
ValueList.Add(doc.Get("gen_modifieddate"));

0 commit comments

Comments
 (0)