sql server - LINQ Stored Procedure Result Issue -
i have simple stored procedure. in fact, looks similar 1 works fine when dragging server dbml. (visual studio 2013):
@intpuid integer select tagname = cast(ecv.value varchar(100)) event_configuration ec join event_configuration_data ecd on ecd.ec_id = ec.ec_id , (ecd.alias in ('runtag', 'a') or ed_field_id=2058) join event_configuration_values ecv on ecv.ecv_id = ecd.ecv_id et_id=2 , ec.pu_id=@intpuid
that's it. pretty simple. don't see why won't work , frustrating.
edit
the error being thrown is:
the return types following stored procedures not detected. set return type each stored procedure in properties window.
second edit
i have no temp tables, resolution nothing me. running in basic asp.net (aspx) solution (dropping sp onto dbml). think answers questions.
Comments
Post a Comment