Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
When adding a record in DataGrid, the object that is initialized somehow gets a value for a navigating property:
public string Name { get; set; } public string Address { get; set; } public string Zip { get; set; } public int? CountryId { get; set; } public virtual Country Country { get; set; }private void ActionBegin(ActionEventArgsargs)
{if (args.RequestType == Syncfusion.Blazor.Grids.Action.Add)
{args.Data = new Tenant();
}
}