Blazor get nested components by Reflection
问题 I'm actually working on form validation in Blazor project (0.8.0). I have created a component called InputValidation. This component receive many parameters to test if a property value is correct according a condition we can set up. @using System.Linq.Expressions; @typeparam TItem @if (!Valid) { <span id="@(Id)_validation" class="form-text text-danger">@Message</span> } @functions { [Parameter] string Id { get; set; } [Parameter] TItem Property { get; set; } [Parameter] Expression<Func<TItem,