Tag Archives: uipath
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…
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…
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…
LINQuist: Where
Now that you are familiar with both Lambda and Query Syntaxes, we will explore the methods one by one – or at least the ones I believe are incredibly useful, starting with Where. Filter With Ease Using Where, you can easily filter collections. If you are trying to filter DataTables, you are better off using…
LINQuist: Query Syntax
If you found Lambda Syntax difficult to work with, then Query just might be what you were looking for. What Makes It So “Special”? Unlike Lambda Syntax, you don’t have to chain coaches of methods one after the other and worry about the anonymous functions not having enough brackets to bottle up its logic in…
LINQuist: Lambda Syntax
LINQ is not easy to wrap your head around. Heck, even I find myself struggling with it from time to time, especially when the problem comes sandwiched with layers upon juicy layers of complexities. It’s a struggle to find any resource out there which describes it in layman terms, other then the technical descriptions which…
Why Learn LINQ?
LINQ is pretty darn useful. Not only does it generate instant results, it also makes you look a lot smarter than you actually are. But what value does it bring to RPA developers, who already have hundreds upon hundreds of click and drag activities to rely on? Also, why learn LINQ, when you can simply…
Browser Migration Using Regex. Yes, You Read That Correctly(Part-I)
Regular Expressions are a life saver, especially when dealing with complex pattern recognition. Once you become proficient at crafting regex patterns (or proficient enough to google the right patterns), you can slowly become creative with it. It happens naturally, as you start looking for patterns outside of regex – areas where you may apply regex…
UiPath: LINQ Is Not Everything
After learning LINQ, I started using it everywhere, even in situations that didn’t necessarily require it. Developing and testing LINQ is time consuming (I’m still a rookie), so I ended up wasting precious time that could have been better utilized on other projects (or articles). Don’t Get Me Wrong LINQ can achieve most outcomes, but…