Reacting to EF renames

This commit is contained in:
Pranav K 2015-02-12 17:47:27 -08:00
parent f243244972
commit e78dadcf0a
1 changed files with 2 additions and 1 deletions

View File

@ -1,13 +1,14 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.Data.Entity.Infrastructure;
using Microsoft.Framework.DependencyInjection; using Microsoft.Framework.DependencyInjection;
namespace Microsoft.Data.Entity.Tests namespace Microsoft.Data.Entity.Tests
{ {
public static class TestHelperExtensions public static class TestHelperExtensions
{ {
public static EntityServicesBuilder AddProviderServices(this EntityServicesBuilder entityServicesBuilder) public static EntityFrameworkServicesBuilder AddProviderServices(this EntityFrameworkServicesBuilder entityServicesBuilder)
{ {
return entityServicesBuilder.AddInMemoryStore(); return entityServicesBuilder.AddInMemoryStore();
} }