Exemple #1
0
 /// <summary>
 /// Sets the base type of this entity type to <c>null</c> meaning that this entity type
 /// does not derive from anything.
 /// </summary>
 /// <returns>Returns itself so that multiple calls can be chained.</returns>
 public EntityTypeConfiguration <TEntityType> DerivesFromNothing()
 {
     _configuration.DerivesFromNothing();
     return(this);
 }