1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace SimpleModel
{
using System.Data.Common;
using System.Data.Entity;
using System.Data.Entity.Core.Objects;
using System.Data.Entity.Infrastructure;
using System.Threading;
using System.Threading.Tasks;
public class SimpleModelContextWithNoData : DbContext
{
static SimpleModelContextWithNoData()
{
Database.SetInitializer(new DropCreateDatabaseAlways<SimpleModelContextWithNoData>());
}
public SimpleModelContextWithNoData()
{
}
public SimpleModelContextWithNoData(string nameOrConnectionString)
: base(nameOrConnectionString)
{
}
public SimpleModelContextWithNoData(DbCompiledModel model)
: base(model)
{
}
public SimpleModelContextWithNoData(string nameOrConnectionString, DbCompiledModel model)
: base(nameOrConnectionString, model)
{
}
public SimpleModelContextWithNoData(DbConnection existingConnection, bool contextOwnsConnection = false)
: base(existingConnection, contextOwnsConnection)
{
}
public SimpleModelContextWithNoData(DbConnection existingConnection, DbCompiledModel model, bool contextOwnsConnection = false)
: base(existingConnection, model, contextOwnsConnection)
{
}
public SimpleModelContextWithNoData(ObjectContext objectContext, bool dbContextOwnsObjectContext = false)
: base(objectContext, dbContextOwnsObjectContext)
{
}
public IDbSet<Product> Products { get; set; }
public IDbSet<Category> Categories { get; set; }
public bool SaveChangesCalled { get; set; }
public override int SaveChanges()
{
SaveChangesCalled = true;
return base.SaveChanges();
}
#if !NET40
public override Task<int> SaveChangesAsync(CancellationToken cancellationToken)
{
SaveChangesCalled = true;
return base.SaveChangesAsync(cancellationToken);
}
#endif
}
}
|