I am working on migrating .Net Framework based application to .Net 6
. Currently, it is using a library System.Data.OleDb
which has compatible .Net core package but it gives a warning that Oledb-- is only supported on Windows
I am going to host my application on Linux based platform so I am looking for a compatible library to read excel (mostly .xls and .xlsx files)
Please suggest.
I tried using System.Data.OleDb
but it is only compatible on Windows.