Hi,
I have created an assembly in MSSQL that validates a regular expression.
select dbo.RegexMatch( N'123-45-6789', N'^\d{3}-\d{2}-\d{4}$' )
Is it possible with LLBLGen to use this in a where clause with SelfServicing?
I would like the following sql:
... where (dbo.RegexMatch([Subject], 'this.*') = 1)
I hope you have some examples for me
Thx