ChangeTrackerExtensions.ToDebugString Method

Definition

Creates a human-readable representation of the given metadata.

Warning: Do not rely on the format of the returned string. It is designed for debugging only and may change arbitrarily between releases.

public static string ToDebugString (this Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTracker changeTracker, Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTrackerDebugStringOptions options, int indent = 0);
public static string ToDebugString (this Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTracker changeTracker, Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTrackerDebugStringOptions options = Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTrackerDebugStringOptions.LongDefault, int indent = 0);
static member ToDebugString : Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTracker * Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTrackerDebugStringOptions * int -> string
<Extension()>
Public Function ToDebugString (changeTracker As ChangeTracker, options As ChangeTrackerDebugStringOptions, Optional indent As Integer = 0) As String
<Extension()>
Public Function ToDebugString (changeTracker As ChangeTracker, Optional options As ChangeTrackerDebugStringOptions = Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTrackerDebugStringOptions.LongDefault, Optional indent As Integer = 0) As String

Parameters

changeTracker
ChangeTracker

The metadata item.

options
ChangeTrackerDebugStringOptions

Options for generating the string.

indent
Int32

The number of indent spaces to use before each new line.

Returns

A human-readable representation.

Remarks

See EF Core change tracking for more information and examples.

Applies to