Is there a way to use the LOAD DATA LOCAL INFILE command to load data from memory in c#? The closest I can come up with is executing a command like:
INSERT INTO tbl_name (a,b,c) VALUES(1,2,3),(4,5,6),(7,8,9);
I'm trying to avoid needing to write a file to the disk (fun with permission issues) on the client's system.