Using DbUp, is it possible to write a procedural migration in C# (rather than SQL)?
I realise the general philosophy of DbUp is to do everything in SQL but there might be cases where C# is the better tool for the job.
For example let's say you're storing serialized binary blobs in your database (ignoring whether that's a good idea or not) and you want to alter the structure of those blobs. Your application code has the know-how to deserialize/serialize those blobs. Doing so might be possible via SQL, but doing it via C# would be simpler.
Is there a way to do this (other than IScript
)? Basically I'm looking for a mechanism to
- Allow issuing arbitary commands against the database in the context of a transaction
- If the transation completes succesfully, record that "migration" as having completed
IScript
seems like the closest thing there is - wondering if there is something better.
Yes - see https://dbup.readthedocs.io/en/latest/usage/#code-based-scripts