[X] I have searched the existing open and closed issues
Description
The .NET Core SQLite libraries we use (provided by Microsoft) only capitalize the S in SQLite (e.g. SqliteConnection). This follows common convention. The .NET Framework library used to use SQLite (e.g. SQLiteConnection).
This provider currently uses the "old" capitalization.
Should we change this so that we match the .NET Core library? While a breaking change, this would bring it into line with what the user using the current SQLite library would expect. (PR https://github.com/DbUp/dbup-sqlite/pull/12)
Is there an existing issue for this?
Description
The .NET Core SQLite libraries we use (provided by Microsoft) only capitalize the
S
inSQLite
(e.g.SqliteConnection
). This follows common convention. The .NET Framework library used to useSQLite
(e.g.SQLiteConnection
).This provider currently uses the "old" capitalization.
Should we change this so that we match the .NET Core library? While a breaking change, this would bring it into line with what the user using the current SQLite library would expect. (PR https://github.com/DbUp/dbup-sqlite/pull/12)
What is the impact?
This is a breaking change.