views:

3

answers:

0

suppose I have a SP and import it as function MySp by EF. Then I want to call this function as:

Context.MySp(CallbackComplete, null);
public event Action<T> CallbackComplete;   //how to write this line code???

In order to capture the complete event, what's the right code for call back event definition?

related questions