I try to read the XML file in DataTable using ReadXml .
DataSet ds = new DataSet(); ds.ReadXml("myxml.xml"); DataTable table = new DataTable(); table = ds.Tables[0]; It works great on small files, but when downloading files larger than 1GB, an error starts
"System.OutOfMemoryException" in mscorlib.dll
DataTable in the subsequent transfer to load in the database, is it possible to somehow read the "portions" of this "portion" of the database, clear, then read again, and so on until the end of the file?
DataTable,List<T>, here is the link to the library - e1s