If I insert data directly in SQL through a stored procedure/sql statement into the ValidationRule table, would those changes only take effect on restarting the Servicestack service, or how does Servicestack handle that.
You would need to clear the Validation Rules cache, e.g.
IValidationSource source = ...; // get from IOC
await source.ClearCacheAsync();