尝试将 html 元素的 title 属性设置为传递给 entity.Property().HasComment(comment) 方法的参数。
我试过没有运气:
<label asp-for="OrganizationTypeId" title="@ViewData.ModelMetadata.Description">
当 OnModelCreating 方法设置以下内容时,该值为 null:
modelBuilder.Entity<Organization>(entity =>
{
entity.Property(e => e.OrganizationTypeId).HasComment("Foreign key of the Org...");
此评论是否可用作 html 属性?
谢谢