Closed mkdotcs closed 2 years ago
hm. That's a new one - could you do a full clean, remove the supabase-csharp
package, and reinstall it and see if that fixes it? If not, try adding a nuget reference to postgrest-csharp@2.0.6
. It looks like it's not detecting the package.
Full clean up did the trick, I guess it was using an older version. It is fixed now, thanks.
Error message:
System.MissingMethodException: 'Method not found: 'Void Postgrest.Attributes.ColumnAttribute..ctor(System.String)'.'
Table class:
The line causing the error:
var users = await instance.From<User>().Get();
Am I missing something?