DbUp / dbup-sqlite

SQLite provider for DbUp
MIT License
0 stars 3 forks source link

Change capitalization from `SQLite` to `Sqlite` for types declared in this provider #6

Open droyad opened 3 months ago

droyad commented 3 months ago

Is there an existing issue for this?

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)

What is the impact?

This is a breaking change.