13 lines
323 B
C#
13 lines
323 B
C#
using System.Data.Entity;
|
|
using System.Data.Entity.SqlServer;
|
|
|
|
namespace ContosoUniversity.DAL
|
|
{
|
|
public class SchoolConfiguration : DbConfiguration
|
|
{
|
|
public SchoolConfiguration()
|
|
{
|
|
SetExecutionStrategy("System.Data.SqlClient", () => new SqlAzureExecutionStrategy());
|
|
}
|
|
}
|
|
} |