File size: 618 Bytes
b9c7f0e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using FlowAPI.Application.Interfaces;
using FlowAPI.Domain.Entities;
using FlowAPI.Infrastructure.Data;
using Microsoft.EntityFrameworkCore;

namespace FlowAPI.Infrastructure.Repositories
{
    public class TaskNodeRepository : GenericRepository<TaskNode>, ITaskNodeRepository
    {
        public TaskNodeRepository(AppDbContext context) : base(context) { }

        public async Task<IEnumerable<TaskNode>> GetAllByGraphIdAsync(Guid graphId)
        {
            return await _dbSet
                .Where(n => n.GraphId == graphId)
                .AsNoTracking()
                .ToListAsync();
        }
    }
}