DbModelBuilder.Entity<TEntityType> Method ()
Registers an entity type as part of the model and returns an object that can be used to configure the entity. This method can be called multiple times for the same entity to perform multiple lines of configuration.
Assembly: EntityFramework (in EntityFramework.dll)
public virtual EntityTypeConfiguration<TEntityType> Entity<TEntityType>() where TEntityType : class
Return Value
Type: System.Data.Entity.ModelConfiguration.EntityTypeConfiguration<TEntityType>The configuration object for the specified entity type.
Type Parameters
- TEntityType
The type to be registered or configured.