A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.telerik.com/aspnet-core/installation/json-serialization below:

ASP.NET Core JSON Serialization - Telerik UI for ASP.NET Core

New to Telerik UI for ASP.NET Core? Start a free 30-day trial JSON Serialization

When you use Grid or other data-bound components, ensure that the property name casing does not change during serialization.

The data-bound Telerik UI components like the Grid, Scheduler, ListView, and more, depend on Pascal case-formatted response from the server. However, the default casing for JSON strings in ASP.NET Core is Camel case. If the serializer changes the casing to Camel, the data-bound components cannot display the data correctly.

This document describes the recommended approaches to maintain the Pascal case in different ASP.NET Core versions.

Configure JSON Serialization in ASP.NET Core 6 and the Minimal Hosting Model

For applications using .NET 6 and the minimal hosting model, open the Program.cs file. To set the serialization options of the application, use any of the approaches demonstrated below.

Configure JSON Serialization in ASP.NET Core 3 through ASP.NET Core 5

To configure the JSON serialization in ASP.NET Core 3 to 5, use any of the following approaches:

Configure JSON Serialization in ASP.NET Core 2

To maintain the property names casing, locate the ConfigureServices method and update it by adding the using Newtonsoft.Json.Serialization; line at the top.

	using Newtonsoft.Json.Serialization;
	...
    public void ConfigureServices(IServiceCollection services)
	{
		...
		
		
		services
			.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1)
			.AddJsonOptions(options =>
				options.SerializerSettings.ContractResolver = new DefaultContractResolver());

		
		services.AddKendo();
	}
Serialization Indentation Options

For applications using .NET 9, System.Text.Json provides indentation properties that allow you to specify an indentation character and indentation size of the JSON string.

The following example shows how to set the indentation options for the JSON result in the Grid's read request response.

	public IActionResult ReadGridData([DataSourceRequest] DataSourceRequest request)
	{
		var gridData = new List<OrderViewModel>()
		{
			new OrderViewModel
			{
				ID = 1,
				OrderName = "Name 1"
			},
			new OrderViewModel
			{
				ID = 2,
				OrderName = "Name 2"
			}
		};

		DataSourceResult result = gridData.ToDataSourceResult(request);
		return Json(result, new JsonSerializerOptions() { 
			WriteIndented = true,
			IndentCharacter = '\t',
			IndentSize = 1,
		});
	}
	@(Html.Kendo().Grid<OrderViewModel>()
		.Name("grid")
		...
		.DataSource(dataSource => dataSource
			.Ajax()
			.Read(read => read.Action("ReadGridData", "Home"))
			...
		)
    )
    @addTagHelper *, Kendo.Mvc

    <kendo-grid name="grid">
        <datasource type="DataSourceTagHelperType.Ajax">
            <transport>
                <read url="@Url.Action("ReadGridData","Home")"/>
            </transport>
        </datasource>
        
    </kendo-grid>

The next example shows how to set the indentation options for the default JSON serialization of the application.

	var builder = WebApplication.CreateBuilder(args);

	
	builder.Services.AddControllersWithViews()
    .AddJsonOptions(options => 
    {
        options.JsonSerializerOptions.PropertyNamingPolicy = null;
        options.JsonSerializerOptions.WriteIndented = true;
        options.JsonSerializerOptions.IndentCharacter = '\t';
        options.JsonSerializerOptions.IndentSize = 1;
    });
	
	
	builder.Services.AddKendo();
See Also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4