I use System.Data.SQLite and C # to access SQLite databases / tables. For lazy and quick development reasons, I created my own class library to encapsulate some of the System.Data.SQLite methods in one method and to create many common database routines (methods) that allow me to reduce my work when accessing data.
If I inherited the System.Data.SQLite library instead of a link, it would help me optimize my work, is this possible? ¿Can you give an example, please?
source
share