Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

40 lines
1.4 KiB
C#

//------------------------------------------------------------------------------
// <copyright file="IEntityAdapter.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">bfung</owner>
// <owner current="true" primary="false">spather</owner>
//------------------------------------------------------------------------------
using System.Data.Common;
namespace System.Data
{
/// <summary>
/// The IEntityAdapter interface allows adapters to support updates of entities stored in an IEntityCache.
/// </summary>
internal interface IEntityAdapter
{
/// <summary>
/// Gets or sets the connection used by this adapter.
/// </summary>
DbConnection Connection { get; set; }
/// <summary>
/// Gets or sets whether the IEntityCache.AcceptChanges should be called during a call to IEntityAdapter.Update.
/// </summary>
bool AcceptChangesDuringUpdate { get; set; }
/// <summary>
/// Gets of sets the command timeout for update operations. If null, indicates that the default timeout
/// for the provider should be used.
/// </summary>
Int32? CommandTimeout { get; set; }
/// <summary>
/// Persists the changes made in the entity cache to the store.
/// </summary>
Int32 Update(IEntityStateManager cache);
}
}