Update .net version 6.0 to 8.0 #54567
-
when I update .net core version from 6.0 to 8.0. I might affect the api response. due to that It is breaking whole my application. Here is the 6.0 response : Here is 8.0 Response : |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi :) @RutulPatel8 I used this to upgrade some projects from dotnet 6 to 8 last week: https://learn.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview?WT.mc_id=dotnet-35129-website Worked great for me :)
I see that the structure of the API response has changed when you upgraded from dotnet core 6 to 8. In the dotnet 6 version, the response was a simple array of objects, but in the dotnet 8 version, the response is an object with additional fields (version, message, and result), where result is the array of objects. |
Beta Was this translation helpful? Give feedback.
Yes, I see but it is due to the response wrapper but it works well for me.