BizTalk WCF-SQL typed stored procedure response schema -


generating response schema typed stored procedure, stored procedure did database updates prior returning final resultset. response schema generated visual studio has quite garbage.

is there way force generate cleaner schema?

enter image description here

the storedprocedureresultset4 1 matters.

here's same answers msdn. unfortunately, marked answer not work since there no way, or it's really, hard, capture , suppress result sets called stored procedure.

the cause related stored procedure code.

the wizard generate schema types elements returned in response sql server. meaning, stored procedure emitting results updates you're getting metadata them.

the way solve modifying sp code not emit result on operation shouldn't. basically, if see in result window in sql management studio, schema it.

status , message presumably result of sp 1 way suppress assign result temp table redirecting form output stream.

however, if storedprocedureresultset4 matters, that's have use. there's nothing wrong ignoring other results provided appear in same order.

just clear, still have write wrapper suppresses unwanted results, invoking original sp new sp not change output, you'll still result sets.

in fact, wrapper harder implementation since you'd have capture , examine results sets don't think possible.

the more correct way in biztalk port map strips unwanted content.


Comments

Popular posts from this blog

node.js - Mongoose: Cast to ObjectId failed for value on newly created object after setting the value -

[C++][SFML 2.2] Strange Performance Issues - Moving Mouse Lowers CPU Usage -

ios - Possible to get UIButton sizeThatFits to work? -