I've managed to build the solution against LLBLGen 5.4, but I'm facing a weird problem when generating code from the LLBLGen designer. The problem is that when generating stored procdure calls (in the 'ActionProcedures.cs' file) everything looks fine except that the name of the mapped stored procedure is missing.
return new StoredProcedureCall(dataAccessProvider, , "MyProcedure")
.AddParameter("@tsnr", "Integer", 0, ParameterDirection.Input, true, 10, 0, tsnr)
.AddParameter("@ttype", "VarChar", 50, ParameterDirection.Input, true, 0, 0, ttype)
.AddParameter("@tnr", "Integer", 0, ParameterDirection.Input, true, 10, 0, tnr)
.AddParameter("@knr", "Integer", 0, ParameterDirection.Input, true, 10, 0, knr)
.AddParameter("@ansattnr", "Integer", 0, ParameterDirection.Input, true, 10, 0, ansattnr);
I've managed to build the solution against LLBLGen 5.4, but I'm facing a weird problem when generating code from the LLBLGen designer. The problem is that when generating stored procdure calls (in the 'ActionProcedures.cs' file) everything looks fine except that the name of the mapped stored procedure is missing.
Example of generated code:
As you can see the second parameter of
StoredProcedureCallis missing. Any ideas on how I can solve this?