C# Reference v1.0

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.


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