faizinfy

Configuration.vb

Dec 13th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.70 KB | None | 0 0
  1. Imports System
  2. Imports System.Data.Entity
  3. Imports System.Data.Entity.Migrations
  4. Imports System.Linq
  5.  
  6. Namespace Migrations
  7.  
  8.     Friend NotInheritable Class Configuration
  9.         Inherits DbMigrationsConfiguration(Of EFDbContext)
  10.  
  11.         Public Sub New()
  12.             AutomaticMigrationsEnabled = False
  13.             Me.CommandTimeout = 240 'Int32.MaxValue
  14.         End Sub
  15.  
  16.         Protected Overrides Sub Seed(context As EFDbContext)
  17.             '  This method will be called after migrating to the latest version.
  18.  
  19.             '  You can use the DbSet(Of T).AddOrUpdate() helper extension method
  20.             '  to avoid creating duplicate seed data.
  21.         End Sub
  22.  
  23.     End Class
  24.  
  25. End Namespace
Advertisement
Add Comment
Please, Sign In to add comment