Repository
interfacein packageklyn.data
public interface Repository<T, TId> extends Queryable<T>:
└ Repository

Provider-neutral, keyed entity source.

Example
users as Repository<User, Int> = manager.repository<User, Int>()
Methods
Modifier and Type Member Description
public count
count() as Long
Counts current source entities.
public validateBeforeRead
validateBeforeRead() as Repository<T, TId>
Validates all identities before subsequent reads.
Inherited Methods
methodInherited Methods from Queryable: asQuery
methodInherited Methods from QuerySource: countPlan, executePlan, existsPlan, openStream, providerName, providerText