Building a generic search/sort for data lists

Wick Takkar
FLOWACCOUNT TECH BLOG
3 min readJan 20, 2019

Technology Stack
1. Typescript ES6
2. C# Linq Expression Builder

Before jumping into the technical parts of developing a search sort functionality, lets list out the aspects on which how it should work and to what generic coverage.

  1. The data is persisted in the database (for relational DB, we will also generalize the search in FK navigational properties)
  2. The data will be cached on a search engine somewhere
  3. The data will also be cached partially on the front-end

This reveals an important design factor, i.e the name of the columns/fields must be mutable between the front-end models, search engine models and database models. I can tell you that I have made this mistake many a times because of sheer laziness! 😞

OK lets start!

Lets pick a common example, e-commerce products and its sales. I am going to go with a relational DB here just for the sake of me googling lesser 😏

So we got some models to play with, and after building a simple grid in the front-end .. we can start writing up the models that will do the dirty work.

We usually use a query model which is mutable from json to a generic query model in the back-end (API).

export class Query {
totalRecords: number;
pageSize: number;
currentPage: number;
filter: Array<FilterOption>
sortBy: Array<SortOption>
}

With the following model for FilterOptions and SortOptions

export class FilterOption {
columnName: string;
columnValue: string;
columnPredicateOperator: string;
}
export class SortOption {
name: string;
sortOrder: string;
}

Simple ain’t it? 😛 Note: The array allows multiple sorts/search.

Now its time to setup the options so we can allow user to search or sort something from the product/category/order data! Anything!

query = new Query();
query.filter.push(new FilterOption("PName", "Cookie", "and"));
query.filter.push(new FilterOption("Sale.DeliveryAddress", "Cookie, "or"));
query.filter.push(new FilterOption("BarCode.BarCode", "Cookie, "or"));

Now we send this request to our front-end collection or the back-end (Who is responsible to choose if it is to be selected from elastic-search or DB)

In this Log i am going to show only going to show how we implemented the expression builder, why? Because its so cool! 😆
So once we de-serialize our request, and get the Query as a C# Object, we can pass it onto the query builder. which goes like this.

Expression Builder for FilterOptions

Expression Builder for SortOptions

We use the dynamic LINQ library for the sort option as it just need the order by functionality unlike the filter where we need to build a where clause using the predicate and also to build a where query for the correct strong-typed properties. Hence we end up with the Expression tree.

In conclusion
The main focus of the technique is at the expression builder which can be written for other types of data persistent layers and in other languages using the same concept. In this one we used LINQ and C# as an example.
The front-end plays the part of sending in the right combination of search queries entered by the user.

Please do not hesitate to share or comment on what you think should be added to the technique or if there is a better expression tree builder out there that conforms with the .net framework! 😄

For more articles from FlowAccount Tech Blog at https://medium.com/flowaccount-tech.

Open Positions jobs available on FlowAccount > https://flowaccount.com/en/jobs

--

--

Wick Takkar
FLOWACCOUNT TECH BLOG

Hi, you can call me Wick. I am a technology enthusiast. I have been spending my 15 years innovating products with new and upcoming technologies.