“WPF -Repository -Muster -Abfrage Async mit Einschlüsse Eigenschaften” Code-Antworten

WPF -Repository -Muster -Abfrage Async mit Einschlüsse Eigenschaften

public T Get(int id, params Expression<Func<T, object>>[] includes)
{
    IQueryable<T> query = _context.Set<T>();
    if (includes != null)
        foreach (Expression<Func<T, object>> include in includes)
            query = query.Include(include);

    return ((DbSet<T>)query).Find(id);
}
Confused Cobra

WPF -Repository -Muster -Abfrage Async mit Einschlüsse Eigenschaften

public interface IGenericRepository<TEntity> where TEntity : class
{
    Task<TEntity> Get(int id, string[] paths = null);
}

public class GenericRepository<TEntity> : IGenericRepository<TEntity> where TEntity : class
{
    private readonly ApplicationDbContext _context;
    private readonly DbSet<TEntity> _dbSet;

    public GenericRepository(ApplicationDbContext context)
    {
        _context = context;
        _dbSet = _context.Set<TEntity>();
    }

    public async Task<TEntity> Get(int id, string[] paths = null)
    {
        var model = await _dbSet.FindAsync(id);
        foreach (var path in paths)
        {
            _context.Entry(model).Reference(path).Load();
        }
        return model;
    }
}
Confused Cobra

WPF -Repository -Muster -Abfrage Async mit Einschlüsse Eigenschaften

public interface IGenericRepository<TEntity> where TEntity : class
{
    Task<TEntity> Get(int id, string[] paths = null);
}

public class GenericRepository<TEntity> : IGenericRepository<TEntity> where TEntity : class
{
    private readonly ApplicationDbContext _context;
    private readonly DbSet<TEntity> _dbSet;

    public GenericRepository(ApplicationDbContext context)
    {
        _context = context;
        _dbSet = _context.Set<TEntity>();
    }

    public async Task<TEntity> Get(int id, string[] paths = null)
    {
        var model = await _dbSet.FindAsync(id);
        foreach (var path in paths)
        {
            _context.Entry(model).Reference(path).Load();
        }
        return model;
    }
}
Confused Cobra

Ähnliche Antworten wie “WPF -Repository -Muster -Abfrage Async mit Einschlüsse Eigenschaften”

Fragen ähnlich wie “WPF -Repository -Muster -Abfrage Async mit Einschlüsse Eigenschaften”

Weitere verwandte Antworten zu “WPF -Repository -Muster -Abfrage Async mit Einschlüsse Eigenschaften” auf C#

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen