Skip to content

Commit 2f0e254

Browse files
committed
X.Extensions.PagedList.EF migrated to X.PagedList.EF
1 parent b156b88 commit 2f0e254

File tree

9 files changed

+69
-20
lines changed

9 files changed

+69
-20
lines changed

X.PagedList.sln

+7
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "X.Extensions.PagedList.EF",
2626
EndProject
2727
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "X.PagedList.Mvc.Core", "src\X.PagedList.Mvc.Core\X.PagedList.Mvc.Core.csproj", "{3B840A44-3150-4BB5-83DA-9B81D1FCB6BE}"
2828
EndProject
29+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "X.PagedList.EF", "src\X.PagedList.EF\X.PagedList.EF.csproj", "{B72170CA-12E0-46E5-821C-FCE7E6F79736}"
30+
EndProject
2931
Global
3032
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3133
Debug|Any CPU = Debug|Any CPU
@@ -60,6 +62,10 @@ Global
6062
{3B840A44-3150-4BB5-83DA-9B81D1FCB6BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
6163
{3B840A44-3150-4BB5-83DA-9B81D1FCB6BE}.Release|Any CPU.ActiveCfg = Release|Any CPU
6264
{3B840A44-3150-4BB5-83DA-9B81D1FCB6BE}.Release|Any CPU.Build.0 = Release|Any CPU
65+
{B72170CA-12E0-46E5-821C-FCE7E6F79736}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
66+
{B72170CA-12E0-46E5-821C-FCE7E6F79736}.Debug|Any CPU.Build.0 = Debug|Any CPU
67+
{B72170CA-12E0-46E5-821C-FCE7E6F79736}.Release|Any CPU.ActiveCfg = Release|Any CPU
68+
{B72170CA-12E0-46E5-821C-FCE7E6F79736}.Release|Any CPU.Build.0 = Release|Any CPU
6369
EndGlobalSection
6470
GlobalSection(SolutionProperties) = preSolution
6571
HideSolutionNode = FALSE
@@ -72,6 +78,7 @@ Global
7278
{AD16A8D1-EAF0-4947-BCEC-A8B423B2F117} = {309A8FC8-4784-4D8D-903F-BD54EBB0F1D7}
7379
{1934BC10-30AE-4C4C-AF22-E444B1F70ACA} = {BDDADD09-D112-418E-8469-BC762EC09936}
7480
{3B840A44-3150-4BB5-83DA-9B81D1FCB6BE} = {BDDADD09-D112-418E-8469-BC762EC09936}
81+
{B72170CA-12E0-46E5-821C-FCE7E6F79736} = {BDDADD09-D112-418E-8469-BC762EC09936}
7582
EndGlobalSection
7683
GlobalSection(ExtensibilityGlobals) = postSolution
7784
SolutionGuid = {1A82D446-6F26-48B2-8085-DFA5F87453FC}

examples/Example.Website/Controllers/EFController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Threading.Tasks;
33
using Example.DAL;
44
using Microsoft.AspNetCore.Mvc;
5-
using X.Extensions.PagedList.EF;
5+
using X.PagedList.EF;
66

77
namespace Example.Website.Controllers;
88

examples/Example.Website/Example.Website.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\..\src\X.Extensions.PagedList.EF\X.Extensions.PagedList.EF.csproj" />
9+
<ProjectReference Include="..\..\src\X.PagedList.EF\X.PagedList.EF.csproj" />
1010
<ProjectReference Include="..\..\src\X.PagedList\X.PagedList.csproj"/>
1111
<ProjectReference Include="..\..\src\X.PagedList.Mvc.Core\X.PagedList.Mvc.Core.csproj" />
1212
<ProjectReference Include="..\Example.DAL\Example.DAL.csproj"/>

src/X.Extensions.PagedList.EF/README.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
# X.Extensions.PagedList.EF
22

3-
[![NuGet Version](http://img.shields.io/nuget/v/X.Extensions.PagedList.EF.svg?style=flat)](https://www.nuget.org/packages/X.Extensions.PagedList.EF/)
4-
[![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/andrew_gubskiy.svg?style=social&label=Follow%20me!)](https://twitter.com/intent/user?screen_name=andrew_gubskiy)
5-
6-
7-
## What is this?
8-
The X.Extensions.PagedList.EF library provides Entity Framework Core extensions for the X.PagedList library, enabling easier
9-
paging through data collections within Entity Framework contexts. This extension facilitates the creation of paged
10-
lists from IQueryable collections, streamlining the process of managing large datasets in .NET applications.
3+
The X.Extensions.PagedList.EF was migrated to X.PagedList.EF.
114

125
## How to use
136
You can find all information about how to use X.PagedList libraries in [Wiki](https://github.com/dncuug/X.PagedList/wiki)

src/X.Extensions.PagedList.EF/X.Extensions.PagedList.EF.csproj

-8
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,6 @@
2323
<None Include="../../x-extensions.png" Pack="True" PackagePath=""/>
2424
</ItemGroup>
2525

26-
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
27-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="[7.0.20,8)"/>
28-
</ItemGroup>
29-
30-
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
31-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.7"/>
32-
</ItemGroup>
33-
3426
<ItemGroup>
3527
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" PrivateAssets="all"/>
3628
</ItemGroup>

src/X.Extensions.PagedList.EF/PagedListExtensions.cs src/X.PagedList.EF/PagedListExtensions.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
using System.Threading.Tasks;
66
using JetBrains.Annotations;
77
using Microsoft.EntityFrameworkCore;
8-
using X.PagedList;
98

10-
namespace X.Extensions.PagedList.EF;
9+
namespace X.PagedList.EF;
1110

1211
/// <summary>
1312
/// EntityFramework extension methods designed to simplify the creation of instances of <see cref="PagedList{T}"/>.

src/X.PagedList.EF/README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# X.Extensions.PagedList.EF
2+
3+
[![NuGet Version](http://img.shields.io/nuget/v/X.Extensions.PagedList.EF.svg?style=flat)](https://www.nuget.org/packages/X.Extensions.PagedList.EF/)
4+
[![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/andrew_gubskiy.svg?style=social&label=Follow%20me!)](https://twitter.com/intent/user?screen_name=andrew_gubskiy)
5+
6+
7+
## What is this?
8+
The X.Extensions.PagedList.EF library provides Entity Framework Core extensions for the X.PagedList library, enabling easier
9+
paging through data collections within Entity Framework contexts. This extension facilitates the creation of paged
10+
lists from IQueryable collections, streamlining the process of managing large datasets in .NET applications.
11+
12+
## How to use
13+
You can find all information about how to use X.PagedList libraries in [Wiki](https://github.com/dncuug/X.PagedList/wiki)
14+
15+
## License
16+
Licensed under the [MIT License](https://github.com/dncuug/X.PagedList/blob/master/LICENSE).
+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<Title>X.PagedList.EF</Title>
5+
<Description>EF extensions for X.PagedList library</Description>
6+
7+
<LangVersion>default</LangVersion>
8+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
9+
10+
<PackageTags>paging pagedlist paged list entity framework ef</PackageTags>
11+
<PackageIcon>x-extensions.png</PackageIcon>
12+
</PropertyGroup>
13+
14+
<ItemGroup>
15+
<None Include="README.md" Pack="true" PackagePath=""/>
16+
</ItemGroup>
17+
18+
<ItemGroup>
19+
<None Include="../../LICENSE.md" Pack="true" PackagePath=""/>
20+
</ItemGroup>
21+
22+
<ItemGroup>
23+
<None Include="../../x-extensions.png" Pack="True" PackagePath=""/>
24+
</ItemGroup>
25+
26+
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
27+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="[7.0.20,8)"/>
28+
</ItemGroup>
29+
30+
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
31+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.7"/>
32+
</ItemGroup>
33+
34+
<ItemGroup>
35+
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" PrivateAssets="all"/>
36+
</ItemGroup>
37+
38+
<ItemGroup>
39+
<ProjectReference Include="..\X.PagedList\X.PagedList.csproj"/>
40+
</ItemGroup>
41+
42+
</Project>
File renamed without changes.

0 commit comments

Comments
 (0)