I do have a python code that has nested dictionaries. The python code is as follows:
T_DICT = {
"ABC_Table":
{
"table": "ABC",
"schema": "XYZ",
"columns":
{
'Id': {"type": 'bigint', "name": "[ID]", 'IsIden': True, 'IsNull': False},
'T_ID': {"type": 'bigint', "name": "Tsa", 'IsIden': False, 'IsNull': False},
}
}
}
I wanted to do the same thing in C#. Please can anyone help me with how to do the same thing in C#?