I have a problem on llbl. I have a stored procedure in my sql database and I want to get the stored procedure code in code(C#) side with llbl.

Sql Code:

SELECT    ROUTINE_DEFINITION
FROM      INFORMATION_SCHEMA.Routines
WHERE     ROUTINE_Name = 'FillStatistics'

This query is getting stored procedure code but I have to do this with llbl.

How can I do this?

Thanks, John

link|improve this question

80% accept rate
sorry... what is llbl? – RoBYCoNTe Jan 24 '11 at 9:00
3rd party orm tool – John Jan 24 '11 at 9:02
feedback

2 Answers

up vote 0 down vote accepted

I would suggest starting with the Online Docs for LLBL. In reference to your particular request i would start here. http://www.llblgen.com/documentation/3.0/Linq%20to%20Sql/hh_start.htm

link|improve this answer
feedback

Add a call to the stored procedure in the designer, and then generating code which will contain a method to call the proc. See: http://www.llblgen.com/documentation/3.0/Designer/hh_goto.htm#How%20To/AddEditStoredProcedureCall.htm

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.