Exemplo n.º 1
0
        public async Task <List <OrchestrationLog> > SaveMany(List <OrchestrationLog> logs)
        {
            var result = await _store.UpsertRangeAsync(logs);

            return(result.SuccessfulEntities.Select(e => e.Entity).ToList());
        }