Skip to:
Property 'Party.DisplayForename' from is defined with the following SQL formula:(CASE WHEN RTRIM(Name) = '' THEN Name ELSE 'Mr' + Name END)
Which cause error if the used database doesn't use '+' for string concatenation.
Apparently this property is never used. Is it relevant for the test?Could we simply remove the SQL formula without breaking the test?
The formula is relevant (test changed as specific for MSSQL)
Property 'Party.DisplayForename' from is defined with the following SQL formula:
(CASE WHEN RTRIM(Name) = '' THEN Name ELSE 'Mr' + Name END)
Which cause error if the used database doesn't use '+' for string concatenation.
Apparently this property is never used. Is it relevant for the test?
Could we simply remove the SQL formula without breaking the test?