DbSet<TEntity> 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
를 DbSet<TEntity> 사용하여 인스턴스 TEntity
를 쿼리하고 저장할 수 있습니다.
에 대한 DbSet<TEntity> LINQ 쿼리는 데이터베이스에 대한 쿼리로 변환됩니다.
public abstract class DbSet<TEntity> : Microsoft.EntityFrameworkCore.Infrastructure.IInfrastructure<IServiceProvider>, Microsoft.EntityFrameworkCore.Query.Internal.IAsyncEnumerableAccessor<TEntity>, System.Collections.Generic.IEnumerable<TEntity>, System.Linq.IQueryable<TEntity> where TEntity : class
public abstract class DbSet<TEntity> : Microsoft.EntityFrameworkCore.Infrastructure.IInfrastructure<IServiceProvider>, Microsoft.EntityFrameworkCore.Query.Internal.IAsyncEnumerableAccessor<TEntity>, System.Collections.Generic.IEnumerable<TEntity>, System.ComponentModel.IListSource, System.Linq.IQueryable<TEntity> where TEntity : class
public abstract class DbSet<TEntity> : Microsoft.EntityFrameworkCore.Infrastructure.IInfrastructure<IServiceProvider>, System.Collections.Generic.IAsyncEnumerable<TEntity>, System.Collections.Generic.IEnumerable<TEntity>, System.ComponentModel.IListSource, System.Linq.IQueryable<TEntity> where TEntity : class
public abstract class DbSet<TEntity> : Microsoft.EntityFrameworkCore.Infrastructure.IInfrastructure<IServiceProvider>, System.Collections.Generic.IEnumerable<TEntity>, System.ComponentModel.IListSource, System.Linq.IQueryable<TEntity> where TEntity : class
type DbSet<'Entity (requires 'Entity : null)> = class
interface IQueryable<'Entity (requires 'Entity : null)>
interface seq<'Entity (requires 'Entity : null)>
interface IEnumerable
interface IQueryable
interface IAsyncEnumerableAccessor<'Entity (requires 'Entity : null)>
interface IInfrastructure<IServiceProvider>
type DbSet<'Entity (requires 'Entity : null)> = class
interface IQueryable<'Entity (requires 'Entity : null)>
interface seq<'Entity (requires 'Entity : null)>
interface IEnumerable
interface IQueryable
interface IAsyncEnumerableAccessor<'Entity (requires 'Entity : null)>
interface IInfrastructure<IServiceProvider>
interface IListSource
type DbSet<'Entity (requires 'Entity : null)> = class
interface IQueryable<'Entity (requires 'Entity : null)>
interface seq<'Entity (requires 'Entity : null)>
interface IEnumerable
interface IQueryable
interface IAsyncEnumerable<'Entity (requires 'Entity : null)>
interface IInfrastructure<IServiceProvider>
interface IListSource
type DbSet<'Entity (requires 'Entity : null)> = class
interface IQueryable<'Entity (requires 'Entity : null)>
interface seq<'Entity (requires 'Entity : null)>
interface IEnumerable
interface IQueryable
interface IInfrastructure<IServiceProvider>
interface IListSource
Public MustInherit Class DbSet(Of TEntity)
Implements IAsyncEnumerableAccessor(Of TEntity), IEnumerable(Of TEntity), IInfrastructure(Of IServiceProvider), IQueryable(Of TEntity)
Public MustInherit Class DbSet(Of TEntity)
Implements IAsyncEnumerableAccessor(Of TEntity), IEnumerable(Of TEntity), IInfrastructure(Of IServiceProvider), IListSource, IQueryable(Of TEntity)
Public MustInherit Class DbSet(Of TEntity)
Implements IAsyncEnumerable(Of TEntity), IEnumerable(Of TEntity), IInfrastructure(Of IServiceProvider), IListSource, IQueryable(Of TEntity)
Public MustInherit Class DbSet(Of TEntity)
Implements IEnumerable(Of TEntity), IInfrastructure(Of IServiceProvider), IListSource, IQueryable(Of TEntity)
형식 매개 변수
- TEntity
이 집합에서 작동하는 엔터티의 형식입니다.
- 상속
-
DbSet<TEntity>
- 파생
- 구현
-
IInfrastructure<IServiceProvider> Microsoft.EntityFrameworkCore.Query.Internal.IAsyncEnumerableAccessor<TEntity> IEnumerable<T> IEnumerable<TEntity> IEnumerable IQueryable IQueryable<TEntity> IListSource IAsyncEnumerable<TEntity>
설명
에 대한 DbSet<TEntity> LINQ 쿼리의 결과는 데이터베이스에서 반환된 결과를 포함하며 데이터베이스에 유지되지 않은 컨텍스트의 변경 내용을 반영하지 않을 수 있습니다. 예를 들어 결과에 새로 추가된 엔터티가 포함되지 않으며 삭제로 표시된 엔터티가 여전히 포함될 수 있습니다.
사용 중인 데이터베이스에 따라 에 대한 DbSet<TEntity> LINQ 쿼리의 일부가 데이터베이스 쿼리로 변환되지 않고 메모리에서 평가될 수 있습니다.
DbSet<TEntity>개체는 일반적으로 파생 DbContext 된 DbSet<TEntity> 의 속성 또는 메서드에서 Set<TEntity>() 가져옵니다.
Entity Framework Core는 동일한 DbContext 인스턴스에서 실행되는 여러 병렬 작업을 지원하지 않습니다. 여기에는 비동기 쿼리의 병렬 실행과 여러 스레드에서의 명시적 동시 사용이 모두 포함됩니다. 따라서 항상 즉시 비동기 호출을 기다리거나 병렬로 실행되는 작업에 별도의 DbContext 인스턴스를 사용합니다. 자세한 내용 및 예제 는 DbContext 스레딩 문제 방지 를 참조하세요.
자세한 내용 과 예제는 DbContext 수명, 구성 및 초기화, EF Core를 사용하여 데이터 쿼리 및 추적 변경을 참조하세요.
생성자
DbSet<TEntity>() |
를 DbSet<TEntity> 사용하여 인스턴스 |
속성
EntityType |
이 IEntityType 집합과 연결된 메타데이터입니다. |
Local |
LocalView<TEntity> 이 집합의 모든 추가, 변경되지 않음 및 수정된 엔터티의 로컬 보기를 나타내는 을 가져옵니다. |
메서드
Add(TEntity) |
가 호출될 때 SaveChanges() 데이터베이스에 삽입되도록 지정된 엔터티 및 아직 추적되지 않은 기타 연결 가능한 엔터티를 추적 Added 하기 시작합니다. |
AddAsync(TEntity, CancellationToken) |
가 호출될 때 SaveChanges() 데이터베이스에 삽입되도록 지정된 엔터티 및 아직 추적되지 않은 기타 연결 가능한 엔터티를 추적 Added 하기 시작합니다. |
AddRange(IEnumerable<TEntity>) |
가 호출될 때 SaveChanges() 데이터베이스에 삽입되도록 지정된 엔터티 및 아직 추적되지 않은 다른 연결 가능한 엔터티를 추적 Added 하기 시작합니다. |
AddRange(TEntity[]) |
가 호출될 때 SaveChanges() 데이터베이스에 삽입되도록 지정된 엔터티 및 아직 추적되지 않은 다른 연결 가능한 엔터티를 추적 Added 하기 시작합니다. |
AddRangeAsync(IEnumerable<TEntity>, CancellationToken) |
가 호출될 때 SaveChanges() 데이터베이스에 삽입되도록 지정된 엔터티 및 아직 추적되지 않은 다른 연결 가능한 엔터티를 추적 Added 하기 시작합니다. |
AddRangeAsync(TEntity[]) |
가 호출될 때 SaveChanges() 데이터베이스에 삽입되도록 지정된 엔터티 및 아직 추적되지 않은 다른 연결 가능한 엔터티를 추적 Added 하기 시작합니다. |
AsAsyncEnumerable() |
로 형식화된 이 개체를 IAsyncEnumerable<T>반환합니다. |
AsQueryable() |
로 형식화된 이 개체를 IQueryable<T>반환합니다. |
Attach(TEntity) |
기본적으로 상태를 사용하여 Unchanged 지정된 엔터티에서 연결할 수 있는 지정된 엔터티 및 항목을 추적하기 시작하지만 다른 상태가 사용되는 경우는 아래를 참조하세요. |
AttachRange(IEnumerable<TEntity>) |
기본적으로 상태를 사용하여 Unchanged 지정된 엔터티에서 연결할 수 있는 지정된 엔터티 및 항목을 추적하기 시작하지만 다른 상태가 사용되는 경우는 아래를 참조하세요. |
AttachRange(TEntity[]) |
기본적으로 상태를 사용하여 Unchanged 지정된 엔터티에서 연결할 수 있는 지정된 엔터티 및 항목을 추적하기 시작하지만 다른 상태가 사용되는 경우는 아래를 참조하세요. |
Entry(TEntity) |
EntityEntry<TEntity> 지정된 엔터티에 대한 를 가져옵니다. 항목은 엔터티에 대한 변경 내용 추적 정보 및 작업에 대한 액세스를 제공합니다. |
Find(Object[]) |
지정된 기본 키 값이 있는 엔터티를 찾습니다. 지정된 기본 키 값이 있는 엔터티가 컨텍스트에서 추적되는 경우 데이터베이스를 요청하지 않고 즉시 반환됩니다. 그렇지 않으면 지정된 기본 키 값이 있는 엔터티에 대한 데이터베이스에 대한 쿼리가 생성되고 이 엔터티가 있으면 컨텍스트에 연결되고 반환됩니다. 엔터티가 없으면 null이 반환됩니다. |
FindAsync(Object[]) |
지정된 기본 키 값이 있는 엔터티를 찾습니다. 지정된 기본 키 값이 있는 엔터티가 컨텍스트에서 추적되는 경우 데이터베이스를 요청하지 않고 즉시 반환됩니다. 그렇지 않으면 지정된 기본 키 값이 있는 엔터티에 대한 데이터베이스에 대한 쿼리가 생성되고 이 엔터티가 있으면 컨텍스트에 연결되고 반환됩니다. 엔터티가 없으면 null이 반환됩니다. |
FindAsync(Object[], CancellationToken) |
지정된 기본 키 값이 있는 엔터티를 찾습니다. 지정된 기본 키 값이 있는 엔터티가 컨텍스트에서 추적되는 경우 데이터베이스를 요청하지 않고 즉시 반환됩니다. 그렇지 않으면 지정된 기본 키 값이 있는 엔터티에 대한 데이터베이스에 대한 쿼리가 생성되고 이 엔터티가 있으면 컨텍스트에 연결되고 반환됩니다. 엔터티가 없으면 null이 반환됩니다. |
GetAsyncEnumerator(CancellationToken) |
IAsyncEnumerator<T> 열거되면 데이터베이스에 대해 쿼리를 비동기적으로 실행하는 을 반환합니다. |
Remove(TEntity) |
가 호출될 때 SaveChanges() 데이터베이스에서 Deleted 제거되도록 상태의 지정된 엔터티 추적을 시작합니다. |
RemoveRange(IEnumerable<TEntity>) |
가 호출될 때 SaveChanges() 데이터베이스에서 Deleted 제거되도록 상태의 지정된 엔터티 추적을 시작합니다. |
RemoveRange(TEntity[]) |
가 호출될 때 SaveChanges() 데이터베이스에서 Deleted 제거되도록 상태의 지정된 엔터티 추적을 시작합니다. |
Update(TEntity) |
기본적으로 상태를 사용하여 Modified 지정된 엔터티에서 연결할 수 있는 지정된 엔터티 및 항목을 추적하기 시작하지만 다른 상태가 사용되는 경우는 아래를 참조하세요. |
UpdateRange(IEnumerable<TEntity>) |
기본적으로 상태를 사용하여 Modified 지정된 엔터티에서 연결할 수 있는 지정된 엔터티 및 항목을 추적하기 시작하지만 다른 상태가 사용되는 경우는 아래를 참조하세요. |
UpdateRange(TEntity[]) |
기본적으로 상태를 사용하여 Modified 지정된 엔터티에서 연결할 수 있는 지정된 엔터티 및 항목을 추적하기 시작하지만 다른 상태가 사용되는 경우는 아래를 참조하세요. |
명시적 인터페이스 구현
IAsyncEnumerable<TEntity>.GetAsyncEnumerator(CancellationToken) |
IAsyncEnumerator<T> 열거되면 데이터베이스에 대해 쿼리를 비동기적으로 실행하는 을 반환합니다. |
IAsyncEnumerableAccessor<TEntity>.AsyncEnumerable |
IAsyncEnumerable<T> 열거되면 데이터베이스에 대해 쿼리를 비동기적으로 실행하는 를 반환합니다. |
IEnumerable.GetEnumerator() |
IEnumerator 열거되면 데이터베이스에 대해 쿼리를 실행하여 데이터베이스의 모든 엔터티를 로드하는 를 반환합니다. |
IEnumerable<TEntity>.GetEnumerator() |
IEnumerator<T> 열거되면 데이터베이스에 대해 쿼리를 실행하여 데이터베이스의 모든 엔터티를 로드하는 를 반환합니다. |
IInfrastructure<IServiceProvider>.Instance |
서비스를 resolve 데 사용되는 범위 IServiceProvider 지정을 가져옵니다. |
IListSource.ContainsListCollection |
컬렉션이 System.Collections.IList 개체의 컬렉션인지 여부를 나타내는 값을 가져옵니다.
항상 |
IListSource.GetList() |
이 메서드는 에 직접 데이터 바인딩을 시도할 때 데이터 바인딩 프레임워크에서 호출됩니다 DbSet<TEntity>. |
IQueryable.ElementType |
IQueryable 요소 형식을 가져옵니다. |
IQueryable.Expression |
IQueryable LINQ 식을 가져옵니다. |
IQueryable.Provider |
IQueryable 공급자를 가져옵니다. |
확장 메서드
적용 대상
Entity Framework