9 lines
252 B
C#
9 lines
252 B
C#
namespace EnvelopeGenerator.Infrastructure;
|
|
|
|
public static class QueryExtension
|
|
{
|
|
public static Query<TEntity> ToQuery<TEntity>(this IQueryable<TEntity> queryable) where TEntity : class
|
|
{
|
|
return new Query<TEntity>(queryable);
|
|
}
|
|
} |