GreenQloud.Persistence.SQLite.SQLiteRepositoryIgnoreDAO.Remove C# (CSharp) Method

Remove() public method

public Remove ( LocalRepository repo, string path ) : void
repo LocalRepository
path string
return void
        public void Remove(LocalRepository repo, string path)
        {
            database.ExecuteNonQuery(string.Format("DELETE FROM RepositoryIgnore where RepositoryId = '{0}' AND Path = '{1}'", repo.Id, path));
        }
SQLiteRepositoryIgnoreDAO