Is there a way to use lexical parameters in a OracleCommand?
What I am trying to do is set a comma delimited list in the where clause
example:
where column in (:LIST)
:LIST would contain something like 'A', 'B', 'C' etc.
in oracle you would do this with &
example
where column in (&LIST)