Method Update
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
StreamThe 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.