这发生在我的数据网格实体更改之前:
Change="@(args => onselectrowpremadeinfo(ProductCareInfo))"
通常我会使用bind-value:after,但我不明白如何传递参数。如果我尝试,它会说我需要返回一个操作
你可以试试
@bind-Value:after="@(()=>{onselectrowpremadeinfo(ProductCareInfo);})"
...
private void onselectrowpremadeinfo(ProductCareInfoType info)
{
}