ModificationCommand.ProcessSinglePropertyJsonUpdate Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- parameters
- ColumnModificationParameters
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
Entity Framework