Here's a screenshot of the error:
The error itself is:
The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid.
Going to the app.config file of that same project I can find:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<connectionStrings>
<add name="DocumentsEntities" connectionString="metadata=res://*/Documents.csdl|res://*/Documents.ssdl|res://*/Documents.msl;provider=System.Data.SQLite;provider connection string='data source="D:\Programming Projects\Desktop Applications\C#\DocumentScanner\DAL\Documents.sqlite"'" providerName="System.Data.EntityClient" />
</connectionStrings>
</configuration>
The connection string does exist but I'm getting this error.
I'm using SQLite and .NET Framework 3.5.
Any suggestions?