├── .gitignore ├── LICENSE.txt ├── System.Data.SQLite.EF6.Migrations.Test ├── App.config ├── DatabaseFixture.cs ├── MigrationTest.cs ├── Models │ ├── Context.cs │ ├── ContextMigrationConfiguration.cs │ └── Model.cs ├── Properties │ └── AssemblyInfo.cs ├── System.Data.SQLite.EF6.Migrations.Test.csproj └── packages.config ├── System.Data.SQLite.EF6.Migrations.sln ├── System.Data.SQLite.EF6.Migrations.sln.DotSettings ├── System.Data.SQLite.EF6.Migrations ├── App.config ├── LiteralHelpers.cs ├── MetadataHelpers.cs ├── Properties │ └── AssemblyInfo.cs ├── SQLiteDdlBuilder.cs ├── SQLiteDmlBuilder.cs ├── SQLiteMigrationSqlGenerator.cs ├── SQLiteProviderManifestHelper.cs ├── SQLiteProviderServicesHelper.cs ├── System.Data.SQLite.EF6.Migrations.csproj ├── TypeUsageHelpers.cs └── packages.config └── docs ├── README.md └── license.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations.Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations.Test/App.config -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations.Test/DatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations.Test/DatabaseFixture.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations.Test/MigrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations.Test/MigrationTest.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations.Test/Models/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations.Test/Models/Context.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations.Test/Models/ContextMigrationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations.Test/Models/ContextMigrationConfiguration.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations.Test/Models/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations.Test/Models/Model.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations.Test/System.Data.SQLite.EF6.Migrations.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations.Test/System.Data.SQLite.EF6.Migrations.Test.csproj -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations.Test/packages.config -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations.sln -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations.sln.DotSettings -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/App.config -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/LiteralHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/LiteralHelpers.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/MetadataHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/MetadataHelpers.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/SQLiteDdlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/SQLiteDdlBuilder.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/SQLiteDmlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/SQLiteDmlBuilder.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/SQLiteMigrationSqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/SQLiteMigrationSqlGenerator.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/SQLiteProviderManifestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/SQLiteProviderManifestHelper.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/SQLiteProviderServicesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/SQLiteProviderServicesHelper.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/System.Data.SQLite.EF6.Migrations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/System.Data.SQLite.EF6.Migrations.csproj -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/TypeUsageHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/TypeUsageHelpers.cs -------------------------------------------------------------------------------- /System.Data.SQLite.EF6.Migrations/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/System.Data.SQLite.EF6.Migrations/packages.config -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubibubi/sqliteef6migrations/HEAD/docs/license.md --------------------------------------------------------------------------------