I'm developing a Winforms application. In this program I've got an image for every record.
In the beginning I stored the images in a SQL Server database as an image column.
But when the data multiplies, the response time is too slow. So I decided to store images on a OneDrive shared folder and in the database, I just save the image's path.
But I don't know how I can communicate with OneDrive from my Winforms application. Which nuget packages would be useful? Which one should I use?
Can somebody help me?