1
Answer

Operationcontract Attributes

bn raju

bn raju

12y
1.4k
1

HI  ,

i am declare 10methods delare   in  interface level--, but  my requriment is client  only saw  the 6  mehods (in wcf strom--etc--like that)



for this Purpose is theere any attribute in  operain contract --plz tell me-.

what is the use of istermintaing, isintilizatig--?


 





 





 



 

Answers (1)
0
Rajeswari nathan
NA 274 20k 15y

Nice,
This answer is helpful for me.
0
Purushottam Rathore
20 8.9k 6.6m 15y
Thanks for reply. My question is how to find stored procedure which are related to particular table. Well, i have found the solution. SELECT DISTINCT sp.name as StoredProcedureName FROM syscomments scomment INNER JOIN sysobjects sp ON scomment.id=sp.id WHERE scomment.TEXT LIKE '%BannerStatistics%'
0
Roei Bar
NA 7.8k 0 15y
if you are looking for all sp used in specific DB you can use

select * from sys.objects where type='p'

or i am missing something