C#: Column is a value

A check for exact equality (null, true, false), finds all rows whose value on the stated column exactly match the specified value.

Examples

With `Select()`

var result = await supabase.From<City>()
  .Where(x => x.Name == null
  .Get();