Table of Contents

Method Update

Namespace
Innova.Data.Entity
Assembly
Innova.Data.dll

Update(Stream, Expression<Func<TEntity, object>>, Expression<Func<TEntity, bool>>)

Updates a specified column in the SQL database asynchronously.

public Task Update(Stream stream, Expression<Func<TEntity, object>> columnSelector, Expression<Func<TEntity, bool>> filterExpression)

Parameters

stream Stream

The input stream containing the data.

columnSelector Expression<Func<TEntity, object>>

An expression to select the column to update.

filterExpression Expression<Func<TEntity, bool>>

Returns

Task

A task representing the asynchronous operation.