Rework Profiles, Add Validation, Add Placeholders, Add Controls

This commit is contained in:
Jonathan Jenne
2022-06-29 14:36:12 +02:00
parent ad289ae666
commit 9b7c1d0e0a
6 changed files with 294 additions and 58 deletions

View File

@@ -4,5 +4,5 @@ Public Class Config
<ConnectionString>
Public Property ConnectionString As String = String.Empty
Public Property DBPrefix As String = "DD_ECM"
Public Property SearchSQL As String = $"SELECT * FROM {DBPrefix}.[dbo].TBDD_MONITORING_PROFILE WHERE ACTIVE = 1 ORDER BY SEQUENCE"
Public Property SearchSQL As String = $"SELECT * FROM {DBPrefix}.[dbo].[TBMON_PROFILE] WHERE ACTIVE = 1 ORDER BY SEQUENCE"
End Class