UpdateEntryExtensions.ToDebugString Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Crea una representación legible de la clase especificada IUpdateEntry.
Advertencia: No se base en el formato de la cadena devuelta. Está diseñado solo para depurar y puede cambiar arbitrariamente entre versiones.
public static string ToDebugString (this Microsoft.EntityFrameworkCore.Update.IUpdateEntry updateEntry, Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTrackerDebugStringOptions options, int indent = 0);
public static string ToDebugString (this Microsoft.EntityFrameworkCore.Update.IUpdateEntry updateEntry, Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTrackerDebugStringOptions options = Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTrackerDebugStringOptions.LongDefault, int indent = 0);
static member ToDebugString : Microsoft.EntityFrameworkCore.Update.IUpdateEntry * Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTrackerDebugStringOptions * int -> string
<Extension()>
Public Function ToDebugString (updateEntry As IUpdateEntry, options As ChangeTrackerDebugStringOptions, Optional indent As Integer = 0) As String
<Extension()>
Public Function ToDebugString (updateEntry As IUpdateEntry, Optional options As ChangeTrackerDebugStringOptions = Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTrackerDebugStringOptions.LongDefault, Optional indent As Integer = 0) As String
Parámetros
- updateEntry
- IUpdateEntry
Entrada.
- options
- ChangeTrackerDebugStringOptions
Opciones para generar la cadena.
- indent
- Int32
Número de espacios de sangría que se van a usar antes de cada nueva línea.
Devoluciones
Una representación legible.
Comentarios
Consulte Vistas de depuración de EF Core para obtener más información y ejemplos.