diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props index 42173e4..a5526ab 100644 --- a/src/Directory.Packages.props +++ b/src/Directory.Packages.props @@ -3,8 +3,8 @@ true - - + + diff --git a/src/GenericQueryable.Abstractions/GenericQueryableFetchExtensions.cs b/src/GenericQueryable.Abstractions/GenericQueryableFetchExtensions.cs index f002da8..75729b3 100644 --- a/src/GenericQueryable.Abstractions/GenericQueryableFetchExtensions.cs +++ b/src/GenericQueryable.Abstractions/GenericQueryableFetchExtensions.cs @@ -4,13 +4,14 @@ namespace GenericQueryable; public static class GenericQueryableFetchExtensions { - extension(IQueryable source) where TSource : class - { - public IQueryable WithFetch(string fetchPath) => source.WithFetch(new UntypedFetchRule(fetchPath)); + extension(IQueryable source) + where TSource : class + { + public IQueryable WithFetch(string fetchPath) => source.WithFetch(new UntypedFetchRule(fetchPath)); - public IQueryable WithFetch(Func, PropertyFetchRule> buildFetchRule) => - source.WithFetch(buildFetchRule.ToFetchRule()); + public IQueryable WithFetch(Func, PropertyFetchRule> buildFetchRule) => + source.WithFetch(buildFetchRule.ToFetchRule()); - public IQueryable WithFetch(FetchRule fetchRule) => source.Execute(executor => executor.FetchService.ApplyFetch(source, fetchRule)); - } + public IQueryable WithFetch(FetchRule fetchRule) => source.Execute(executor => executor.FetchService.ApplyFetch(source, fetchRule)); + } } \ No newline at end of file diff --git a/src/__SolutionItems/CommonAssemblyInfo.cs b/src/__SolutionItems/CommonAssemblyInfo.cs index 776f033..8637ea4 100644 --- a/src/__SolutionItems/CommonAssemblyInfo.cs +++ b/src/__SolutionItems/CommonAssemblyInfo.cs @@ -3,7 +3,7 @@ [assembly: AssemblyProduct("GenericQueryable")] [assembly: AssemblyCompany("IvAt")] -[assembly: AssemblyVersion("2.1.4.0")] +[assembly: AssemblyVersion("2.1.5.0")] [assembly: AssemblyInformationalVersion("changes at build")] #if DEBUG