remove wrapping values in lookup control
This commit is contained in:
parent
549880bd3b
commit
d3c293ca29
@ -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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user