33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.Tests
|
|
{
|
|
public class BloggingContextWithPendingModelChanges : BloggingContext
|
|
{
|
|
public BloggingContextWithPendingModelChanges(DbContextOptions options)
|
|
: base(options)
|
|
{ }
|
|
|
|
[DbContext(typeof(BloggingContextWithPendingModelChanges))]
|
|
public class BloggingModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
}
|
|
}
|
|
|
|
[DbContext(typeof(BloggingContextWithPendingModelChanges))]
|
|
[Migration("111111111111111_MigrationOne")]
|
|
public partial class MigrationOne : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{ }
|
|
}
|
|
}
|
|
} |