I\'ve created an ASP.Net WEB API Project that will be used by a mobile application. I need the response json to omit null properties instead of return them as property
property
You can also use [DataContract] and [DataMember(EmitDefaultValue=false)] attributes
[DataContract]
[DataMember(EmitDefaultValue=false)]