44 строки
1.8 KiB
C#
44 строки
1.8 KiB
C#
// ----------------------------------------------------------------------------------
|
|
// Microsoft Developer & Platform Evangelism
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
|
|
// EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
|
|
// OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
// ----------------------------------------------------------------------------------
|
|
// The example companies, organizations, products, domain names,
|
|
// e-mail addresses, logos, people, places, and events depicted
|
|
// herein are fictitious. No association with any real company,
|
|
// organization, product, domain name, email address, logo, person,
|
|
// places, or events is intended or should be inferred.
|
|
// ----------------------------------------------------------------------------------
|
|
|
|
namespace Microsoft.WindowsAzure.Samples.CloudServices.Notifications.Sql
|
|
{
|
|
using System.Data.Entity;
|
|
using System.Data.Entity.ModelConfiguration.Conventions;
|
|
|
|
public class SqlEndpointContext : DbContext
|
|
{
|
|
public SqlEndpointContext(string nameOrConnectionString)
|
|
: base(nameOrConnectionString)
|
|
{
|
|
}
|
|
|
|
protected SqlEndpointContext()
|
|
{
|
|
}
|
|
|
|
public virtual IDbSet<SqlEndpointTableRow> Endpoints { get; set; }
|
|
|
|
protected override void OnModelCreating(DbModelBuilder modelBuilder)
|
|
{
|
|
if (modelBuilder != null)
|
|
{
|
|
modelBuilder.Conventions.Remove<PluralizingEntitySetNameConvention>();
|
|
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
|
|
}
|
|
}
|
|
}
|
|
} |