如何获取在 HasComment 中设置的 EF Core 模型配置实体 属性 评论作为 html 标题属性
How can I get the EF Core model configuration entity property comment set in HasComment as the html title attribute
正在尝试将 html 元素的标题属性设置为传递给 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 属性吗?
谢谢
This DbContext extension method 展示了如何检索模型的评论。
正在尝试将 html 元素的标题属性设置为传递给 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 属性吗?
谢谢
This DbContext extension method 展示了如何检索模型的评论。