We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The warning has gone now but it is not returning the result correctly, it is returning "int" instead of the result table.
What I am getting Task<int> Test_SP2Async(CancellationToken cancellationToken = default(CancellationToken));
Task<int> Test_SP2Async(CancellationToken cancellationToken = default(CancellationToken));
What i am expecting Task<List<Test_SP2ReturnModel>> Test_SP2Async(CancellationToken cancellationToken = default(CancellationToken));
Task<List<Test_SP2ReturnModel>> Test_SP2Async(CancellationToken cancellationToken = default(CancellationToken));
Originally posted by @iahmed9312 in #831 (comment)
The text was updated successfully, but these errors were encountered:
Hi @iahmed9312 .Could you post an example stored proc which replicates this error so I can debug it. Thanks
Sorry, something went wrong.
example stored proc is posted in this reference #831 . Thank you.
No branches or pull requests
What I am getting
Task<int> Test_SP2Async(CancellationToken cancellationToken = default(CancellationToken));
What i am expecting
Task<List<Test_SP2ReturnModel>> Test_SP2Async(CancellationToken cancellationToken = default(CancellationToken));
Originally posted by @iahmed9312 in #831 (comment)
The text was updated successfully, but these errors were encountered: