sjh37 / EntityFramework-Reverse-POCO-Code-First-Generator

EntityFramework Reverse POCO Code First Generator - Beautifully generated code that is fully customisable. This generator creates code as if you reverse engineered a database and lovingly created the code by hand. It is free to academics (you need a .edu or a .ac email address), not free for commercial use. Obtain your licence from
https://www.reversepoco.co.uk/
Other
700 stars 230 forks source link

Selecting from temporary table returning "int" instead of the result table. #833

Open iahmed9312 opened 3 months ago

iahmed9312 commented 3 months ago
          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

sjh37 commented 3 months ago

Hi @iahmed9312 .Could you post an example stored proc which replicates this error so I can debug it. Thanks

iahmed9312 commented 3 months ago

example stored proc is posted in this reference #831 . Thank you.