Beispiel #1
0
 public async ValueTask AddAsync <TEntity>([NotNull] TEntity entity, CancellationToken cancellationToken = default) where TEntity : class
 {
     await _dbContext.AddAsync(entity, cancellationToken);
 }