-
Notifications
You must be signed in to change notification settings - Fork 905
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[API] Add the ability to retrieve package count for a Source #431
Comments
ferventcoder
changed the title
Add the ability to retrieve package count for a Source
API - Add the ability to retrieve package count for a Source
Sep 25, 2015
RichiCoder1
pushed a commit
to RichiCoder1/choco
that referenced
this issue
Sep 28, 2015
Updated List to use IQueryable all the way down. Added count with efficiently takes advantage of IQueryable change to provide quick counts of results. Added a fall-through branch for non-remote repositories that don't handle certain filters and sorts automatically.
RichiCoder1
pushed a commit
to RichiCoder1/choco
that referenced
this issue
Sep 28, 2015
Updated List to use IQueryable all the way down. Added count with efficiently takes advantage of IQueryable change to provide quick counts of results. Added a fall-through branch for non-remote repositories that don't handle certain filters and sorts automatically.
RichiCoder1
pushed a commit
to RichiCoder1/choco
that referenced
this issue
Sep 28, 2015
… makes sense. Updated Nuget List to attempt to use IQueryable all the way down for queries executed against service based repositories. This allows chocolatey to defer filtering, sorting, and paging to the server rather than the client. Reverts back to the old logic, though, for everything else.
RichiCoder1
pushed a commit
to RichiCoder1/choco
that referenced
this issue
Sep 28, 2015
Uses the IQueryable changes to add an efficient count for retrieving the number of results that would be returned by a list, usually in a much faster, more efficient way.
RichiCoder1
pushed a commit
to RichiCoder1/choco
that referenced
this issue
Oct 3, 2015
… makes sense. Updated Nuget List to attempt to use IQueryable all the way down for queries executed against service based repositories. This allows chocolatey to defer filtering, sorting, and paging to the server rather than the client. Reverts back to the old logic, though, for everything else.
RichiCoder1
pushed a commit
to RichiCoder1/choco
that referenced
this issue
Oct 3, 2015
Uses the IQueryable changes to add an efficient count for retrieving the number of results that would be returned by a list, usually in a much faster, more efficient way.
RichiCoder1
pushed a commit
to RichiCoder1/choco
that referenced
this issue
Oct 3, 2015
ferventcoder
added a commit
that referenced
this issue
Oct 7, 2015
(GH-431) Add Count to List Command API
ferventcoder
added a commit
that referenced
this issue
Oct 11, 2015
* master: (61 commits) (version) 0.9.10-beta1 (doc) update release notes/nuspec for 0.9.10 (GH-431) Changed Count to ListCount. Added xml docs to List and ListCount. (GH-431) Add Count to IListCommand Uses the IQueryable changes to add an efficient count for retrieving the number of results that would be returned by a list, usually in a much faster, more efficient way. (GH-431) Update Nuget List to use IQueryable as far down as makes sense. Updated Nuget List to attempt to use IQueryable all the way down for queries executed against service based repositories. This allows chocolatey to defer filtering, sorting, and paging to the server rather than the client. Reverts back to the old logic, though, for everything else. (GH-433) Externalize some more package information. Externalizes more package information that was available through the API as properties, but were marked internal. Allows full access to all Package information. (GH-427) Add paging to ListCommand (GH-71) Add priority property to ChocolateySource (GH-416) Named arguments issue after merge (GH-363) Show human-readable file sizes when downloading (GH-392) pass 4.0 reference assemblies to ilmerge (GH-390) Fix log4net dependency version in nuspec (maint) registry specs are Windows only (maint) define windows only tests (doc) update changelog (version) 0.9.10-alpha series (GH-14) Throw when windowsfeature is not plural (GH-14) Log source type evaluated (maint) removing unused variable (GH-14) Allow alternative sources to interact ...
ferventcoder
changed the title
API - Add the ability to retrieve package count for a Source
[API] Add the ability to retrieve package count for a Source
Aug 29, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I need to ability to efficiently retrieve the package count for a source that meets the given criteria.
PR at #430
The text was updated successfully, but these errors were encountered: