remove wrapping values in lookup control
This commit is contained in:
parent
549880bd3b
commit
d3c293ca29
@ -231,7 +231,7 @@ Public Class ClassPatterns
|
|||||||
Case "INTEGER"
|
Case "INTEGER"
|
||||||
oValue = String.Join(",", oLookupControl.SelectedValues)
|
oValue = String.Join(",", oLookupControl.SelectedValues)
|
||||||
Case "VARCHAR"
|
Case "VARCHAR"
|
||||||
Dim oWrapped = oLookupControl.SelectedValues.Select(Function(v) $"'{v}'")
|
Dim oWrapped = oLookupControl.SelectedValues
|
||||||
oValue = String.Join(",", oWrapped)
|
oValue = String.Join(",", oWrapped)
|
||||||
Case Else
|
Case Else
|
||||||
LOGGER.Warn("Lookup Control with [{0}] is not supported!", oFoundType)
|
LOGGER.Warn("Lookup Control with [{0}] is not supported!", oFoundType)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user