Skip to content

Missing param in generated stored procedure calls #1

Description

@bulldetektor

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:

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);

As you can see the second parameter of StoredProcedureCall is missing. Any ideas on how I can solve this?

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions