EntityFramework-Reverse-POCO-Code-First-Generator
EntityFramework-Reverse-POCO-Code-First-Generator copied to clipboard
Selecting from temporary table returning "int" instead of the result table.
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));
What i am expecting
Task<List<Test_SP2ReturnModel>> Test_SP2Async(CancellationToken cancellationToken = default(CancellationToken));
Originally posted by @iahmed9312 in https://github.com/sjh37/EntityFramework-Reverse-POCO-Code-First-Generator/issues/831#issuecomment-1916537154
Hi @iahmed9312 .Could you post an example stored proc which replicates this error so I can debug it. Thanks
example stored proc is posted in this reference #831 . Thank you.