Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Joël 7 posts 98 karma points
    Apr 21, 2023 @ 09:24
    Joël
    0

    Migration plan update data in custom table

    Hello,

    I am trying to add columns to a table and then update the current rows inside the same table. I found the Update expression but I can't seem to find how to tell it which column to update. You can see the migration below where I want to update the 'SentInvoice' column of table 'Order'.

    public class MigrationAddedStartDateTrainingToOrder : MigrationBase
    {
        public MigrationAddedStartDateTrainingToOrder(IMigrationContext context)
            : base(context)
        {
    
        }
    
        public override void Migrate()
        {
            if (!ColumnExists("Order", "StartDateTraining"))
            {
                Create.Column("StartDateTraining").OnTable("Order").AsDateTime().Nullable().WithDefaultValue(null).Do();
                Create.Column("SentInvoice").OnTable("Order").AsDateTime().Nullable().WithDefaultValue(null).Do();
    
                // Update Order SentInvoice
                Update.Table("Order").Set(DateTime.Now).AllRows().Do();
            }
        }
    }
    

    Does anyone know how to declare the column which should be updated?

  • Marc Goodson 2157 posts 14434 karma points MVP 9x c-trib
    Apr 22, 2023 @ 17:19
    Marc Goodson
    100

    Hi Joel

    It looks like that the 'Set' method on the UpdateDataBuilder takes in the data as an anonymous object

    https://github.com/umbraco/Umbraco-CMS/blob/33adbf41fa1f5c5d0759c70a7116114107addf56/src/Umbraco.Infrastructure/Migrations/Expressions/Update/UpdateDataBuilder.cs#L19

    And you can see it builds to 'Set Expression' by calling 'getData' method:

    https://github.com/umbraco/Umbraco-CMS/blob/33adbf41fa1f5c5d0759c70a7116114107addf56/src/Umbraco.Infrastructure/Migrations/Expressions/Update/UpdateDataBuilder.cs#L39

    Which turns the anonymous object into a list of KeyValuePairs of PropertyName and Value and builds up the Set expression...

    Sooooooo I think

    Update.Table("Order").Set(new { SentInvoice = DateTime.Now}).AllRows().Do();
    

    will do what you need... but if so it's wilfully obscure :-P

    If not then looking at the core 'migrations' that Umbraco HQ have created between versions:

    https://github.com/umbraco/Umbraco-CMS/tree/33adbf41fa1f5c5d0759c70a7116114107addf56/src/Umbraco.Infrastructure/Migrations/Upgrade/V80_0

    Can see they often use Database.Execute to do an update of data, but looking at the code, I think that anonymous object should work.

    regards

    Marc

  • Jonathon Cove 26 posts 101 karma points
    Nov 03, 2023 @ 16:49
    Jonathon Cove
    0

    Thanks for the leg up, from experimenting I'd have to say that using Database.Execute() is the quickest way to get this working.

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies