Table of Contents

Interface IPostgrestTableWithCache<T>

Namespace
Supabase.Postgrest.Interfaces
Assembly
Supabase.Postgrest.dll

Client interface for Postgrest

public interface IPostgrestTableWithCache<T> : IPostgrestTable<T>, IGettableHeaders where T : BaseModel, new()

Type Parameters

T
Inherited Members

Methods

Get(CancellationToken)

Performs a Get request, returning a CacheBackedRequest<TModel> which populates from the cache, if applicable.

Task<CacheBackedRequest<T>> Get(CancellationToken cancellationToken = default)

Parameters

cancellationToken CancellationToken

Returns

Task<CacheBackedRequest<T>>