Mark Junker
Mark Junker
You need the package `FluentMigrator.Runner`. EDIT: Please take a look at the [quick start tutorial](https://fluentmigrator.github.io/articles/quickstart.html).
Did you install the package `FluentMigrator.Runner`?
FluentMigrator doesn't use the BLOB API for SQLite, which means that you have to use NHibernate to update the data. You can use NHibernate inside a FluentMigrator migration like this:...
I assume that the exception thrown by the SQLite ADO.NET driver returns a (different) status code for this kind of error, so I guess that it would be possible.
I'm confused too. Maybe there's an additional checkout needed?
The version schema migration is a special migration that creates the `VersionInfo` table. The best way to provide your own `VersionInfo` for different schemas in the same database is to...
Maybe it's possible to implement your own `IVersionLoader`?
@jzabroski @boop5 I guess that the problem is, that registering an `IVersionTableMetaDataAccessor` is required, because a registration of a `IVersionTableMetaData` instance might not be sufficient? However, the registration of a...
Counter suggestion: ```cs reader.GetRecords(). .Aggregate((IInsertDataSyntax)Insert.IntoTable("Person"), (pv, item) => pv.Row(item)) ``` OK, ok, definitely not as nice as having: ```cs Insert.IntoTable("Person").Rows(reader.GetRecords().ToList()); ``` IOW: I agree with this proposal.
It's not supported and it most likely never will, because FM is not an ORM. But you can still use the `SetExistingRowsTo` extension method for new colums. Example: ```cs Create.Column("IsValid").OnTable("SomeTable").AsBoolean()...