You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No update is being applied to the "LastUpdated" column. Remember to use UTC time.
Look into writing an UPDATE TRIGGER from the SQL side.
CREATETRIGGERBroadcasterLastUpdatedONdbo.Broadcaster
AFTER UPDATEASBEGINUPDATEdbo.BroadcasterSET LastUpdated = GETUTCDATE()
FROMdbo.Broadcaster b
INNER JOIN inserted i
ONb.Id=i.Id
END
GO