Following section demonstrates regular update with model of table.
		// Table Aliases
        var t0 = new Orders().AsQueryable();

		// Updates the entire row with values which are NOT Null if the fields are nullable.
		var order = new Orders();
			order.OrderDate = DateTime.Now.AddDays(1);
		
		var query = Odb.SQL.{{hl}}Update{{/hl}}(x =>
							x.From(t0)
							 .Where( t0.OrderID == 10248 )
							 {{hl}}.SetModel(order){{/hl}}
					);

		var affected_rows = connection.Sql(query).NonQuery();
    
UPDATE t0
SET t0.OrderDate='2020-06-20 10:00:00'
FROM [Orders] AS t0
WHERE t0.OrderID == 10248
Ix5dj8