I've to perform a bulk insert from an Azure function and I was wondering if there's a way of treating an IList<string>
as IDataReader
. As I've seen there're around some implementations that via reflection creates an IDataReader
but I don't know how to process it when it's a string (';'
separated value)
Thanks.