Show / Hide Table of Contents

Interface IPersistChangesContext

Context interface for persisting changes operation.

Inherited Members
IDataOperationContext.DataContext
IContext.CompositionContext
IContext.AmbientServices
IContext.Identity
IExpando.HasDynamicMember(String)
IExpando.ToDictionary(Func<String, String>, Func<Object, Object>)
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
IIndexable.Item[String]
ILoggable.Logger
System.IDisposable.Dispose()
Namespace: Kephas.Data.Commands
Assembly: Kephas.Data.dll
Syntax
public interface IPersistChangesContext : IDataOperationContext, IContext, IExpando, IDynamicMetaObjectProvider, IIndexable, ILoggable, IDisposable

Properties

| Improve this Doc View Source

ChangeSet

Gets or sets the change set to be persisted.

Declaration
IEnumerable<object> ChangeSet { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<System.Object>

The change set.

Remarks

If the change set is null, an automatic change set detection is performed.

| Improve this Doc View Source

Iteration

Gets or sets the iteration during persistence workflow.

Declaration
int Iteration { get; set; }
Property Value
Type Description
System.Int32

The iteration.

| Improve this Doc View Source

IterationChangeSet

Gets or sets the change set to be persisted within an iteration.

Declaration
IEnumerable<IEntityEntry> IterationChangeSet { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<IEntityEntry>

The change set within an iteration.

Extension Methods

DynamicObjectExtensions.SetPropertyValue(Object, String, Object)
DynamicObjectExtensions.TrySetPropertyValue(Object, String, Object)
DynamicObjectExtensions.GetPropertyValue(Object, String)
DynamicObjectExtensions.TryGetPropertyValue(Object, String, out Object)
DynamicObjectExtensions.GetRuntimeTypeInfo(Object)
DynamicObjectExtensions.ToDynamic(Object)
DynamicObjectExtensions.ToExpando(Object)
BehaviorValue.ToBehaviorValue<TValue>(TValue)
CollectionExtensions.AddRange<T, TItem>(T, IEnumerable<TItem>)
LoggingExtensions.GetLogger(Object, IContext)
TypeExtensions.GetAbstractType(Object)
TypeExtensions.GetAbstractTypeInfo(Object)
ReflectionHelper.GetTypeInfo(Object)
MessageBrokerExtensions.CreateBrokeredMessageBuilder(IContext)
ContextExtensions.InitialData(IContext)
ContextExtensions.WithInitialData<TContext>(TContext, IEnumerable<(Object entity, ChangeState changeState)>)
ContextExtensions.WithInitialData<TContext>(TContext, IEnumerable<Object>)
ContextExtensions.WithInitialData<TContext>(TContext, IEnumerable<IChangeStateTrackableEntityEntry>)
EntityEntryExtensions.TryGetAttachedEntityEntry(Object)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX