Monthly Archives: February 2022
LINQuist: Order By “Phrases”
If you know how to order items in a DataTable by a given column, then you are probably looking for something a little more advanced. But really, how much more advanced can we get with this? Why would I want to order it any more than it already is? There are times when the OrderBy…
LINQuist: Order By
Making sweet, sweet progress. Not only are you away of the two syntaxes with which you can construct LINQ, you also know how to filter and project data into whatever shape you want! Now it’s time to up your game by learning how to order data, but first here is something that I have to…
AA: RPA Comes in Various Shapes, Sizes and Customizable Forms (Part-II)
Last time, we learnt how to create and customize forms, and today, we will learn how to add rules to our forms. Why add rules? Because RPA is rule-based (get it?). No but seriously, why bother adding rules? I Need an Answer If you’ve explored forms before, then you’d have noticed that there are validations…
LINQuist: Select the Columns You Want
Working with Data isn’t limited to merely filtering out the items you don’t want or merging it with similar data…which is a topic for another day. You might also have to slice and dice them until they fit the requirement. Clients come with all sorts of fancy requirements these days, so it’s crucial that you…
AA: RPA Comes in Various Shapes, Sizes and Customizable Forms(Part-I)
RPA is composed of scripts bundled up into click and drag automation blocks with which we can develop automations in less time than it would take a Python or JavaScript developer to develop, which is why it has captured the market like wildfire. Automation is automation, but because its automation, people aren’t too comfortable working…
LINQuist: Select
With Where, we have learnt how to be selective about the data we want. It uses conditions to filter out data before boxing it up with the same paper wrapping it came in. But Where is built to manipulate data, not the schema which houses it. You can’t filter a DataTable and compartmentalize it into…