|
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().AddJsonOptions(options =>
{
options.SerializerSettings.ContractResolver = new Newtonsoft.Json.Serialization.DefaultContractResolver();
});
}
|
|
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().AddNewtonsoftJson(options =>
{
options.SerializerSettings.ContractResolver =
new DefaultContractResolver();
}); }
|
I had the same issue... after lots of experimentation I discovered that EnablePersistence = true was causing the grid to show blank rows. This is definitely a bug... when I turned off EnablePersistence, all my data is rendered correctly on the grid. Syncfusion, please investigate this.