You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have two problems with C# sdk
1- It is not strongly typed
2- It is unreadable, long methods and too much attributes
Suggestion suppose people to put Activities in interface or class. the the IDurableOrchestrationContext should be able to produce proxy for strongly typed methods
let's instead of
class ActivityClass
{[FunctionName(nameof(MethodName))]publicTask<string> MethodName(intx)}//orchestrator
context.CallActivityWithRetryAsync<T>(nameof(ActivityClass.MethodName), retryOptions, input);
We have two problems with C# sdk
1- It is not strongly typed
2- It is unreadable, long methods and too much attributes
Suggestion suppose people to put Activities in interface or class. the the IDurableOrchestrationContext should be able to produce proxy for strongly typed methods
let's instead of
We should be able to do:
Will be great
The text was updated successfully, but these errors were encountered: