// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace System.Data.Entity.Infrastructure
{
using System.Data.Entity.Core.Objects;
///
/// Interface implemented by objects that can provide an instance.
/// The class implements this interface to provide access to the underlying
/// ObjectContext.
///
public interface IObjectContextAdapter
{
///
/// Gets the object context.
///
/// The object context.
ObjectContext ObjectContext { get; }
}
}