remove wrapping values in lookup control

This commit is contained in:
Jonathan Jenne 2020-04-01 15:59:12 +02:00
parent 549880bd3b
commit d3c293ca29

View File

@ -231,7 +231,7 @@ Public Class ClassPatterns
Case "INTEGER"
oValue = String.Join(",", oLookupControl.SelectedValues)
Case "VARCHAR"
Dim oWrapped = oLookupControl.SelectedValues.Select(Function(v) $"'{v}'")
Dim oWrapped = oLookupControl.SelectedValues
oValue = String.Join(",", oWrapped)
Case Else
LOGGER.Warn("Lookup Control with [{0}] is not supported!", oFoundType)