Skip to main content

Module db_set

Module db_set 

Source
Expand description

DbSet — entry point for querying and manipulating entity collections.

DbSet<T> represents a typed collection of entities that can be queried and mutated. It implements two interfaces following ISP:

  • IQueryable<T> — query capabilities
  • IDbSet<T> — collection mutation capabilities

Structs§

DbSet
TrackedEntry

Traits§

IDbSet
Interface for manipulating a typed entity collection.