All,
Is there any way you can think of using the LLBLGen Adapter to call a stored procedure by name (as opposed to generating a strongly typed sp call)?
We are in the process of building a system that will require customizations post-production without recompiling and redeploying the code. These customizations will be handled by creating new stored procedures that conform to a specific signature/interface (same parameters and same resultset formats).
The only way I can think to do this via LLBLGen is to create a number of SP stubs (call them "SP_1", "SP_2", etc.) and generate all of them, then have a table that keeps metadata about each one (whether they are enabled, etc.).
I think this approach would work fine, but my concern is that I could create, say, 20 SP stubs, then down the road we would do an implementation that needed 21, and we would have to regen, recompile, and redeploy.
Any thoughts?
Thanks,
Phil