I have a list of Id(string). I want to delete records from like this:
DELETE FROM MyTable WHERE ID=:Id
But, I don't want to to call the DB repeatedly; instead want to pass the Id collection as comma separated string and execute the above query on the Oracle server at one shot!
Any help will be highly appreciated.
Thanks in advance.