I have a recommendation from Azure to create the following index:
CREATE NONCLUSTERED INDEX [nci_wi_Transactions_71EA7D20388C3F47A9B9EBF2A1C7BA0C] ON [dbo].[Transactions] ([Client_Id]) INCLUDE ([Date], [Description], [Size], [Type]) WITH (ONLINE = ON)
Is it possible to execute this SQL directly from MSSQL without affecting my applications work? Or do I need to apply some migrations from code-first to keep database context with the correct state anyway?