Ewen Wallace

Results 29 comments of Ewen Wallace

https://www.ksoftware.net/code-signing-certificates/ is cheaper and has worked well for me. They sell Comodo certs. @justRu you could sign it with your own cert like I do. Most of what I use...

If it is any consolation, EF7 hasn't gotten very far with this ... https://github.com/aspnet/EntityFramework/blob/dev/src/Microsoft.EntityFrameworkCore.Sqlite/Migrations/SqliteMigrationsSqlGenerator.cs#L149 http://ef.readthedocs.org/en/latest/providers/sqlite/limitations.html#migrations-limitations

More (actually, less progress but more discussion) from the EF team not getting far with SQLite migrations. This issue has links to a lot of other related issues in the...

The ASP.NET team are still onto this: https://github.com/aspnet/EntityFramework/issues/7969 as well as the previously mentioned https://github.com/aspnet/EntityFramework/issues/329 I have been thoroughly distracted by client work, those pesky rascals, so have been unable...

also found: https://github.com/bubibubi/sqliteef6migrations ...edit... https://www.codeproject.com/Articles/220018/SQLite-Compare-Utility may be handy. Perhaps a way is to create an new empty database if `SqliteCreateDatabaseIfNotExists` fails and use the diff migrate the existing database to...

I haven't checked this out thoroughly yet but it looks interesting ... https://www.codeproject.com/Articles/32977/Upgrade-framework-for-SQLite-databases

Just leaving this here so I don't lose it - looks useful ... https://github.com/praeclarum/sqlite-net/wiki/AutomaticMigrations https://github.com/praeclarum/sqlite-net/blob/master/src/SQLite.cs#L489

I haven't followed this up but apparently SQLite v 3.25.0 introduced renaming columns and fixed some table renaming problems: https://stackoverflow.com/questions/805363/how-do-i-rename-a-column-in-a-sqlite-database-table/52346199#52346199

I found System.Data.SQLite.EF6.Migrations at https://github.com/bubibubi/sqliteef6migrations. It doesn't seem to replace your library, I didn't look at it closely. I need to continue to use .NET framework for most of my...

Thanks to @beachwalker's head start I've written something that passes the tests I wrote. I'd hesitate to call it "fixed" in this esteemed company. It's at https://github.com/CADbloke/fast-member/tree/CADbloke > I was...