Hi Issue with view returning null,
fixed please remember in startup file to add
services.AddMvc()
.AddJsonOptions(x =>
{
x.SerializerSettings.ContractResolver = null;
x.SerializerSettings.NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore;
});
I hope this will help other people having same issue with core 2.0 and grid