Share via


ModificationCommand.ProcessSinglePropertyJsonUpdate Method

Definition

Performs processing specifically needed for column modifications that correspond to single-property JSON updates.

protected virtual void ProcessSinglePropertyJsonUpdate (ref Microsoft.EntityFrameworkCore.Update.ColumnModificationParameters parameters);
abstract member ProcessSinglePropertyJsonUpdate : ColumnModificationParameters -> unit
override this.ProcessSinglePropertyJsonUpdate : ColumnModificationParameters -> unit
Protected Overridable Sub ProcessSinglePropertyJsonUpdate (ByRef parameters As ColumnModificationParameters)

Parameters

Remarks

By default, strings, numeric types and bool and sent as a regular relational parameter, since database functions responsible for patching JSON documents support this. Other types get converted to JSON via the normal means and sent as a string parameter.

Applies to