I have C#.NET Web Application that Data Access Layer's dll referencing in WPF Windows application. This DAL, establishing a connection to SQLite.
I want to install WPF application on any other local machine. But the SQL database is located my computer folder like this:
static SQLiteConnection dbConnection = new SQLiteConnection(@"Data Source=E:\File\DMS\DAL\Model\test.s3db;");
How can I do this?