IEntityCreateOperations<T,T1> Interface

Definition

Groups operations for creating a single entity.

public interface IEntityCreateOperations<in T,T1>
type IEntityCreateOperations<'T, 'T1> = interface
Public Interface IEntityCreateOperations(Of In T, T1)

Type Parameters

T

The entity type request.

This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
T1

The entity type response.

Derived

Methods

Create(T)

Creates a new entity.

CreateAsync(T)

Asynchronously creates a new entity.

Applies to