IApiKeyRepository

Namespace: Babel.Data Assembly: Babel.Data.dll

Interface for ApiKey repository.

public interface IApiKeyRepository : IGenericRepository<ApiKey>

Implements

IGenericRepository<ApiKey>

Methods

Delete(IEnumerable<int>)

Deletes the given list of API keys from the repository. Begins tracking the given list of API keys in the Detached state such that it will be deleted in the database when SaveChanges() is called.

void Delete(IEnumerable<int> apiKeyIds)

Parameters

NameDescription

apiKeyIds IEnumerable<int>

The API key identifiers to delete.

Last updated