Nest sources
var source = new ObjectSource(new {A = 1, B = 2});
var nestedSource = source.Nest("obj1", "obj2");Data in nestedSource:
{
"obj1":
{
"obj2":
{
"A": "1",
"B": "2"
}
}
}Related pages
Configuration sourcesScope sourcesLast updated
Was this helpful?