Supabase C# trying to understand how Base Model's work

This is my query
   var result = await supabase
        .From<ConfigGet>()
        .Where(x => x.license == license)
        .Get();

This is my model
[Table("licenses")]
public class ConfigGet : BaseModel
{
    [Column("license")] public string license { get; set; }
    [Column("AntiBattleyePacketBlocker")] public bool AntiBattleyePacketBlocker { get; set; }
    [Column("OldSilentAim")] public bool OldSilentAim { get; set; }
    [Column("NewSilentAim")] public bool NewSilentAim { get; set; }
}

And this is my table
  public.licenses (
    license uuid not null default gen_random_uuid (),
    "AntiBattleyePacketBlocker" boolean null,
    "OldSilentAim" boolean null,
    "NewSilentAim" boolean null,
    constraint licenses_pkey primary key (license)
  ) tablespace pg_default;

Could somebody point me in the right direction what i am doing wrong for example the query is succesfull it just doesnt return anything while checking the documentation it says thats how you filter for the data using where but the query just returns empty
Was this page helpful?