1 write to NestedRow
Aspire.Dashboard (1)
Components\Dialogs\ManageDataDialog.razor.cs (1)
257NestedRow = dataRow,
9 references to NestedRow
Aspire.Dashboard (9)
Components\Dialogs\ManageDataDialog.razor.cs (4)
302else if (item.IsNestedRow && item.NestedRow is not null && item.ParentResourceName is not null) 304OnSelectDataRowClicked(item.ParentResourceName, item.NestedRow.DataType); 339if (item.NestedRow is not null && item.ParentResourceName is not null) 341return $"{item.ParentResourceName}_{item.NestedRow.DataType}";
Components_Dialogs_ManageDataDialog_razor.g.cs (4)
870else if (context.IsNestedRow && context.NestedRow is not null && context.ParentResourceName is not null) 917IsDataRowSelected(context.ParentResourceName, context.NestedRow.DataType) ? _iconSelectedMultiple : _iconUnselectedMultiple 934() => OnSelectDataRowClicked(context.ParentResourceName, context.NestedRow.DataType) 957__builder3.AddContent(89, GetDataTypeDisplayName(context.NestedRow.DataType)
Model\ManageData\ManageDataGridItem.cs (1)
18public bool IsNestedRow => NestedRow is not null;