If you open up Linqpad and run the following query
```
from p in Packages
where p.Id == "jQuery.TypeScript.DefinitelyTyped"
select p
```
Note the `DownloadCount` column appears to have duplicate download counts?
But if you look at the website
http://www.nuget.org/packages/jquery.TypeScript.DefinitelyTyped/
there aren't duplicate download counts.
any thoughts?
```
from p in Packages
where p.Id == "jQuery.TypeScript.DefinitelyTyped"
select p
```
Note the `DownloadCount` column appears to have duplicate download counts?
But if you look at the website
http://www.nuget.org/packages/jquery.TypeScript.DefinitelyTyped/
there aren't duplicate download counts.
any thoughts?