supabase-community / postgrest-csharp

A C# Client library for Postgrest
https://supabase-community.github.io/postgrest-csharp/api/Postgrest.html
MIT License
114 stars 22 forks source link

Error in README.md #52

Closed kolaval closed 1 year ago

kolaval commented 1 year ago

Improve documentation

Link

Add a link to the page which needs improvement (if relevant)

Describe the problem

Not referencing instance

Describe the improvement

`var client = Client.Initialize("http://localhost:3000");

// Get All Messages
var response = await **Client**.Table<Message>().Get();`

should be var response = await **client**.Table<Message>().Get();

Additional context

Also the code does not work it returns an Api key error.

acupofjose commented 1 year ago

Thanks for the catch!