IEntityEntryGraphIterator.TraverseGraph Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
TraverseGraph<TState>(EntityEntryGraphNode<TState>, Func<EntityEntryGraphNode<TState>,Boolean>) |
Attraversa un grafico di entità che consente di eseguire un'azione in ogni nodo. |
TraverseGraph<TState>(EntityEntryGraphNode, TState, Func<EntityEntryGraphNode,TState,Boolean>) |
Attraversa un grafico di entità che consente di eseguire un'azione in ogni nodo. |
TraverseGraph<TState>(EntityEntryGraphNode<TState>, Func<EntityEntryGraphNode<TState>,Boolean>)
Attraversa un grafico di entità che consente di eseguire un'azione in ogni nodo.
public void TraverseGraph<TState> (Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntryGraphNode<TState> node, Func<Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntryGraphNode<TState>,bool> handleNode);
abstract member TraverseGraph : Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntryGraphNode<'State> * Func<Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntryGraphNode<'State>, bool> -> unit
Public Sub TraverseGraph(Of TState) (node As EntityEntryGraphNode(Of TState), handleNode As Func(Of EntityEntryGraphNode(Of TState), Boolean))
Parametri di tipo
- TState
Tipo dell'oggetto di stato.
Parametri
Nodo visitato.
- handleNode
- Func<EntityEntryGraphNode<TState>,Boolean>
Delegato da chiamare per gestire il nodo.
Si applica a
TraverseGraph<TState>(EntityEntryGraphNode, TState, Func<EntityEntryGraphNode,TState,Boolean>)
Attraversa un grafico di entità che consente di eseguire un'azione in ogni nodo.
public void TraverseGraph<TState> (Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntryGraphNode node, TState state, Func<Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntryGraphNode,TState,bool> handleNode);
abstract member TraverseGraph : Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntryGraphNode * 'State * Func<Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntryGraphNode, 'State, bool> -> unit
Public Sub TraverseGraph(Of TState) (node As EntityEntryGraphNode, state As TState, handleNode As Func(Of EntityEntryGraphNode, TState, Boolean))
Parametri di tipo
- TState
Tipo dell'oggetto di stato.
Parametri
- node
- EntityEntryGraphNode
Nodo visitato.
- state
- TState
Oggetto stato arbitrario.
- handleNode
- Func<EntityEntryGraphNode,TState,Boolean>
Delegato da chiamare per gestire il nodo.