You are on page 1of 1

using System;

using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace EFL
{
public interface IEntity<TEntity, in TKey> : IDisposable
{
IQueryable<TEntity> AllIncluding(params Expression<Func<TEntity, object>
>[] includeProperties);
}
}

You might also like