How to pass parameter from DialogService.OpenSideAsync?

Hi,

I would like to know how I can pass the Id developers.SuiviBEId in DialogService.OpenSideAsync
developers.SuiviBEId is a Id from the class SuiviBE.

 <RadzenButton Text="Dialog on Side" ButtonStyle="ButtonStyle.Secondary" Click="@(args=> OpenSideDialog(developers.SuiviBEId))" />
  async Task OpenSideDialog(int actionId)
    {
        act.SuiviBEId = actionId;
        await DialogService.OpenSideAsync<Actions>($"Actions", options: new SideDialogOptions { CloseDialogOnOverlayClick = closeDialogOnOverlayClick, Position = position, ShowMask = showMask });
    }

The button Dialog on Side is put in parent table.

When I clicl Actions I open the datagrid ActionsItems from the page Actions and I want to rendering all actions from id 1 (eg) from parent table.
I've put the foreign key as below.

protected override void OnModelCreating(ModelBuilder modelBuilder)
        {
            base.OnModelCreating(modelBuilder);

            modelBuilder.Entity<ActionItem>()
                .HasOne(p => p.SuiviBE)
                .WithMany(b => b.ActionItems);
            
        }

Thanks is advance to your reply

This subject is closed. Thanks to EditForm I was able to fill the child Table.
But not is DialogSide because I was not able to pass a parameter in OpenSideAysnc