Mohamed Nazem
1 day ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
framework/src/Volo.Abp.ObjectMapping/Volo/Abp/ObjectMapping/IQueryProjectionMapper.cs
-
framework/src/Volo.Abp.ObjectMapping/Volo/Abp/ObjectMapping/QueryProjectionMapper.cs
|
|
@ -1,5 +1,6 @@ |
|
|
using System.Linq; |
|
|
using System.Linq; |
|
|
using Volo.Abp.DependencyInjection; |
|
|
using Volo.Abp.DependencyInjection; |
|
|
|
|
|
|
|
|
namespace Volo.Abp.ObjectMapping; |
|
|
namespace Volo.Abp.ObjectMapping; |
|
|
|
|
|
|
|
|
public interface IQueryProjectionMapper<TSource, TDestination> : ITransientDependency |
|
|
public interface IQueryProjectionMapper<TSource, TDestination> : ITransientDependency |
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
using System.Linq; |
|
|
using System.Linq; |
|
|
|
|
|
|
|
|
namespace Volo.Abp.ObjectMapping; |
|
|
namespace Volo.Abp.ObjectMapping; |
|
|
|
|
|
|
|
|
public abstract class QueryProjectionMapper<TSource, TDestination> : IQueryProjectionMapper<TSource, TDestination> |
|
|
public abstract class QueryProjectionMapper<TSource, TDestination> : IQueryProjectionMapper<TSource, TDestination> |
|
|
|