ViewBuilder<TEntity> 类

定义

此类的实例在使用 API 时从方法中返回, ModelBuilder 它不是在应用程序代码中直接构造的。

public class ViewBuilder<TEntity> : Microsoft.EntityFrameworkCore.Metadata.Builders.ViewBuilder, Microsoft.EntityFrameworkCore.Infrastructure.IInfrastructure<Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity>> where TEntity : class
type ViewBuilder<'Entity (requires 'Entity : null)> = class
    inherit ViewBuilder
    interface IInfrastructure<EntityTypeBuilder<'Entity>>
Public Class ViewBuilder(Of TEntity)
Inherits ViewBuilder
Implements IInfrastructure(Of EntityTypeBuilder(Of TEntity))

类型参数

TEntity

要配置的实体类型。

继承
ViewBuilder<TEntity>
实现

构造函数

ViewBuilder<TEntity>(StoreObjectIdentifier, EntityTypeBuilder<TEntity>)

这是一个支持 Entity Framework Core 基础结构的内部 API,不受与公共 API 相同的兼容性标准的约束。 可能会在任何版本中更改或删除它,而无需通知。 仅应在代码中非常谨慎地直接使用它,并且知道在更新到新的 Entity Framework Core 版本时这样做可能会导致应用程序失败。

属性

Name

指定的视图名称。

(继承自 ViewBuilder)
Schema

指定的视图架构。

(继承自 ViewBuilder)
StoreObject

这是一个支持 Entity Framework Core 基础结构的内部 API,不受与公共 API 相同的兼容性标准的约束。 可能会在任何版本中更改或删除它,而无需通知。 仅应在代码中非常谨慎地直接使用它,并且知道在更新到新的 Entity Framework Core 版本时这样做可能会导致应用程序失败。

(继承自 ViewBuilder)

方法

Property(String)

将 属性映射到当前视图上的列,并返回一个 对象,该对象可用于提供特定于视图的配置(如果属性映射到多个视图)。

(继承自 ViewBuilder)
Property<TProperty>(Expression<Func<TEntity,TProperty>>)

将 属性映射到当前视图上的列,并返回一个 对象,该对象可用于提供特定于视图的配置(如果属性映射到多个视图)。

Property<TProperty>(String)

将 属性映射到当前视图上的列,并返回一个 对象,该对象可用于提供特定于视图的配置(如果属性映射到多个视图)。

(继承自 ViewBuilder)

显式接口实现

IInfrastructure<EntityTypeBuilder<TEntity>>.Instance

此类的实例在使用 API 时从方法中返回, ModelBuilder 它不是在应用程序代码中直接构造的。

IInfrastructure<EntityTypeBuilder>.Instance

此类的实例在使用 API 时从方法中返回, ModelBuilder 它不是在应用程序代码中直接构造的。

(继承自 ViewBuilder)

扩展方法

GetInfrastructure<T>(IInfrastructure<T>)

从使用 IInfrastructure<T>隐藏的属性获取值。

此方法通常由数据库提供程序 (和其他扩展) 使用。 它通常不用于应用程序代码。

适用于