Skip to content

Commit

Permalink
Version change, updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tghamm committed Jul 2, 2016
1 parent daaaddd commit 482837f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Castle.DynamicLinqQueryBuilder.Nuget/Package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
<package >
<metadata>
<id>Castle.DynamicLinqQueryBuilder</id>
<version>1.0.5-prerelease</version>
<version>1.0.5</version>
<title>Dynamic Linq Query Builder</title>
<authors>Grant Hamm</authors>
<owners>Castle Worldwide, Inc</owners>
<description>
A simple dynamic expression-tree query builder. You pass it a nested collection of filters for an object, and it materializes a query capable of acting as the filter.
A simple dynamic expression-tree query builder. You pass it a nested collection of filters for an object, and it materializes a query capable of acting as the filter to an arbitrary collection.
</description>
<releaseNotes>
</releaseNotes>
<summary>
A simple dynamic expression-tree query builder. You pass it a nested collection of filters for an object, and it materializes a query capable of acting as the filter.
A simple dynamic expression-tree query builder. You pass it a nested collection of filters for an object, and it materializes a query capable of acting as the filter to an arbitrary collection.
</summary>
<language>en-US</language>
<projectUrl>https://github.com/castle-it/dynamic-linq-query-builder</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

`dynamic-linq-query-builder` is a small library that allows any `.Net` framework class collection to be filtered dynamically at runtime.

Features (v1.0.4)
Features (v1.0.5)
--
* Generates an `IQueryable` from any collection
* Generates an `IQueryable` from any collection and filter combination
* Capable of complex, grouped queries against as many fields as you want
* Supports a number of operators for each type
* in
Expand Down

3 comments on commit 482837f

@brt185
Copy link

@brt185 brt185 commented on 482837f Feb 17, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi I need to integrate this in my web app. Can you please provide me with some documentation?

@tghamm
Copy link
Owner Author

@tghamm tghamm commented on 482837f Feb 17, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@brt185, the source code includes a working demo you can use to get up and running.

@brt185
Copy link

@brt185 brt185 commented on 482837f Feb 19, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks managed to get that work.
Would I be able to join with another rule?

Rule 1
Example: Category in (books, movies, music)

Rule 2
Price > 500
and Category equals Rule 1

Please sign in to comment.