Table of Contents

Class Migration

Namespace
MongoDB.Entities
Assembly
MongoDB.Entities.dll

Represents a migration history item in the database

[Collection("_migration_history_")]
public class Migration : Entity, IEntity
Inheritance
Migration
Implements
Inherited Members
Extension Methods

Constructors

Migration(int, string, double)

Represents a migration history item in the database

public Migration(int number, string name, double timeTakenSeconds)

Parameters

number int
name string
timeTakenSeconds double

Properties

Name

public string Name { get; set; }

Property Value

string

Number

public int Number { get; set; }

Property Value

int

TimeTakenSeconds

public double TimeTakenSeconds { get; set; }

Property Value

double