i want to read CSV files as string and then save as xml in sqlserver table.
i want to do some thing like this with csv
FileStream stream = File.Open(FilePath, FileMode.Open, FileAccess.Read);
IExcelDataReader excelReader = ExcelReaderFactory.CreateOpenXmlReader(stream);
DataSet result = excelReader.AsDataSet();
how it could be possible?