Hi Robert,
If it is created at runtime then I can't see in the generated code. I did note however that it does appear in the Procedures.xml file but unlike the other stored procedures (that are created) there is a "skip" attribute on the "procedure" element:
<procedure owner="dbo" name="User_Find_Dynamic" grant="" skip="true">
Is this a bug or is there a switch that needs to be ticked to automatically these stored procedures?
PS I have just done a quick review of the 2.2.0 code and noted that this functionality has _not_ been implemented. Might explain why it's not there :)
------------------------
Additional: I now understand how the dynamic creation is happening. I have isolated my issue. I was using AppendIn which allows you to do an SQL IN Statement. My supplied values were strings so I supplied them as I would in an SQL Query (ie 'test1','test2','test3'). This failed because of the quotes. If I removed the quotes (ie test1,test2,test3) then the code worked fine.
I still think this is a bug that needs to be addressed in that netTiers should recognise the quotes. For example, the following value list will cause netTiers to not funtion as expected: 'this, is my test','testing','tested, again'. Note the commas inside the quotes.
I'll post a bug report regarding this.