I found this word in the source code here: <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp/Application/Services/Dto/ListResultDto.cs">https://github.com/aspnetboilerplate/as ... sultDto.cs</a>
I tried the code and I don't know what is the Serializable use for and why do we need this. Because the program is still able to run without Serializable.
Thanks. /Tommy
4 Answer(s)
-
0
Hi,
It is needed when you return the result to third party apps.
Thanks.
-
0
Thank you for your acknowledgement.
But could your please explain more about how does it affects the return result to third party apps in the context of ABP framework?
Thanks. /Tommy
-
0
Hi
ListResultDto is a pre-build helper DTO to return a list of another DTO. Generally serialization (textual) is used for transferring objects. Serialization is needed to store a copy of the object, send them it to another process on the same system or over the network.
There's a usage of ListResultDto here; <a class="postlink" href="https://www.aspnetzero.com/Documents/Developing-Step-By-Step-Core">https://www.aspnetzero.com/Documents/De ... -Step-Core</a>
-
0
Hi Could you please share the link
Thks