Search Results

2
votes

How do I serialize a C# anonymous type to a JSON string?

Use the Newtonsoft JSON library. …
1
vote

Best way to filter domain objects for json output in an ASP.NET MVC application

You could use the Newtonsoft library and [JsonIgnore] attribute for marking properties of your class you don't want to e …