0

尝试将 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 属性?

谢谢

4

1 回答 1

0

此 DbContext 扩展方法显示如何检索模型的注释。

于 2020-10-05T15:46:04.430 回答