I am new to ASP.Net Web Api Core. I have been using ASP.Net MVC for past few years and I always have written an ActionFilter
and used JSON.Net
for Serializing
data into JSON
. So, in that way I replaced Microsoft's JavaScript Serializer
(which is slower than JSON.Net
) with JSON.Net
(it is claimed to be 400% faster).
How to do all this in ASP.Net Web Api Core? Where to change the default formattor?
Note: Please feel free to ask if you have any questions.
Thanks