feat(IQueryExecutor): IQuery umbenennen
This commit is contained in:
9
EnvelopeGenerator.Infrastructure/QueryExtension.cs
Normal file
9
EnvelopeGenerator.Infrastructure/QueryExtension.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user