Reputation: 115
I can't find any usage documentation for some Nuget packages.
I did a google search and searched Nuget.
Install-Package SQLSelect.QueryBuilder -Version 1.0.0
Install-Package Newq
I'm trying to find documentation for the Nuget packages above. I want to make a program that has an Access Like query builder and I wanted to look at these two packages.
I have no ideas how to use them, I don't see any examples or documentation with them.
Does anybody know of any documentation for either of them?
Is there a better sql builder for net that is free?
Upvotes: 2
Views: 502
Reputation: 8819
The first port of call is usually the NuGet Gallery pages, e.g.:
In the Info panel at the top right of each page is a Contact Owners
link that should at least enable you to ask the package owners for more information. It's unfortunate that they don't supply any documentation links.
Without more context about what it is you're trying to do, though, I can't provide you further guidance on the rest of your question... "what is better?" is considered to be an opinionated question and you haven't listed any requirements as to what functionality you need.
Upvotes: 1