Megosztás a következőn keresztül:


JsonNullableStructCollectionReaderWriter<TCollection,TConcreteCollection,TElement> Class

Definition

A JsonValueReaderWriter<TValue> for collections of primitives nullable value types.

public class JsonNullableStructCollectionReaderWriter<TCollection,TConcreteCollection,TElement> : Microsoft.EntityFrameworkCore.Storage.Json.JsonValueReaderWriter<System.Collections.Generic.IEnumerable<TElement?>>, Microsoft.EntityFrameworkCore.Storage.Internal.ICompositeJsonValueReaderWriter where TCollection : IEnumerable<TElement?> where TElement : struct
type JsonNullableStructCollectionReaderWriter<#seq<Nullable<'Element>>, 'ConcreteCollection, 'Element (requires 'Element : struct)> = class
    inherit JsonValueReaderWriter<seq<Nullable<'Element>>>
    interface ICompositeJsonValueReaderWriter
Public Class JsonNullableStructCollectionReaderWriter(Of TCollection, TConcreteCollection, TElement)
Inherits JsonValueReaderWriter(Of IEnumerable(Of Nullable(Of TElement)))
Implements ICompositeJsonValueReaderWriter

Type Parameters

TCollection

The collection type.

TConcreteCollection

The collection type to create an index of, if needed.

TElement

The element type.

Inheritance
JsonNullableStructCollectionReaderWriter<TCollection,TConcreteCollection,TElement>
Implements
Microsoft.EntityFrameworkCore.Storage.Internal.ICompositeJsonValueReaderWriter

Constructors

JsonNullableStructCollectionReaderWriter<TCollection,TConcreteCollection,TElement>(JsonValueReaderWriter<TElement>)

Creates a new instance of this collection reader/writer, using the given reader/writer for its elements.

Properties

ValueType

The type of the value being read/written.

(Inherited from JsonValueReaderWriter<TValue>)

Methods

FromJson(Utf8JsonReaderManager, Object)

Reads the value from a UTF8 JSON stream or buffer.

(Inherited from JsonValueReaderWriter<TValue>)
FromJsonString(String, Object)

Reads the value from JSON in a string.

(Inherited from JsonValueReaderWriter)
FromJsonTyped(Utf8JsonReaderManager, Object)

Reads the value from JSON.

ToJson(Utf8JsonWriter, Object)

Writes the value to JSON.

(Inherited from JsonValueReaderWriter<TValue>)
ToJsonString(Object)

Writes the value to a JSON string.

(Inherited from JsonValueReaderWriter)
ToJsonTyped(Utf8JsonWriter, IEnumerable<Nullable<TElement>>) System.Object.ToJsonTyped(System.Text.Json.Utf8JsonWriter,System.Collections.Generic.IEnumerable{System.Nullable{`2}})
ToJsonTyped(Utf8JsonWriter, TValue)

Writes the value to JSON.

(Inherited from JsonValueReaderWriter<TValue>)

Explicit Interface Implementations

ICompositeJsonValueReaderWriter.InnerReaderWriter

Applies to