Click or drag to resize

StudentTeacherRelationsModel Class

[Missing <summary> documentation for "T:awsomAPI.Migrations.StudentTeacherRelationsModel"]

Inheritance Hierarchy
SystemObject
  Migration
    awsomAPI.MigrationsStudentTeacherRelationsModel

Namespace:  awsomAPI.Migrations
Assembly:  awsomAPI (in awsomAPI.exe) Version: 1.0.0
Syntax
C#
public class StudentTeacherRelationsModel : Migration

The StudentTeacherRelationsModel type exposes the following members.

Constructors
  NameDescription
Public methodStudentTeacherRelationsModel
Initializes a new instance of the StudentTeacherRelationsModel class
Top
Properties
  NameDescription
Public propertyActiveProvider

The name of the current database provider.

This can be used to write conditional code in the migration such that different changes can be made to the database depending on the type of database being used.

(Inherited from Migration.)
Public propertyDownOperations

The MigrationOperations that will migrate the database 'down'.

That is, those operations that need to be applied to the database to take it from the state left in by this migration so that it returns to the state that it was in before this migration was applied.

(Inherited from Migration.)
Public propertyTargetModel
The IModel that the database will map to after the migration has been applied.
(Inherited from Migration.)
Public propertyUpOperations

The MigrationOperations that will migrate the database 'up'.

That is, those operations that need to be applied to the database to take it from the state left in by the previous migration so that it is up-to-date with regard to this migration.

(Inherited from Migration.)
Top
Methods
  NameDescription
Protected methodBuildTargetModel (Overrides Migration.BuildTargetModel(ModelBuilder).)
Protected methodDown (Overrides Migration.Down(MigrationBuilder).)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Protected methodUp (Overrides Migration.Up(MigrationBuilder).)
Top
See Also