refactor(Repository): add Query getter metod to Repository calss and interface to be able to create read-only query without expression
This commit is contained in:
@@ -40,6 +40,11 @@ public interface IRepository<TEntity>
|
||||
#endregion Create
|
||||
|
||||
#region Read
|
||||
#if NET
|
||||
public
|
||||
#endif
|
||||
IQueryable<TEntity> Query { get; }
|
||||
|
||||
#if NET
|
||||
public
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user