Skip to content

Instantly share code, notes, and snippets.

@axemastabloggists
Created November 4, 2018 16:58
Show Gist options
  • Save axemastabloggists/a71b69c9ca976489a02eecedfac1776b to your computer and use it in GitHub Desktop.
Save axemastabloggists/a71b69c9ca976489a02eecedfac1776b to your computer and use it in GitHub Desktop.
Data Persistence Part 2 - Gist 1
using SQLite;
namespace DataPersistence.Sqlite.Database.Private
{
public interface IDatabaseAccess
{
/// <summary>
/// Returns a connection to the sqlite database
/// </summary>
/// <returns></returns>
SQLiteConnection GetConnection();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment