0
LINQ extensions - Simplified keyword search
Tomáš Petříček
| publikováno 28. července 2006
Recently, I came across interesting question at LINQ Forums (Dynamic conditions: How to achieve multiple "OR" conditions with LINQ? [1]).
The question is whether LINQ (and especially LINQ to SQL)...
0
F# quotations visualizer
Tomáš Petříček
| publikováno 21. června 2006
I already explained what F# quotations are
and I explained how you can do some simple manipulations with it. In this article I'd like to
present an application that I wrote and that can be hel...
0
Calling functions in LINQ queries
Tomáš Petříček
| publikováno 10. června 2006
The LINQ Project [^] is
an extension to .NET Framework and most important .NET languages (C# and VB.Net) that extends these languages with query operators and some
language features that make...
0
Slides and demos from F# presentation
Tomáš Petříček
| publikováno 9. června 2006
This semester I attended Advanced .NET Seminar that was led by Tomas Matousek [^] who is one of the authors of Phalanger project [^] (Which is an amazing project by the way. It takes PHP source cod...
0
F# - Simple quotations transformation
Tomáš Petříček
| publikováno 28. května 2006
This article describes very simple code that I wrote while learning
how to work with the F# quotations library. Using the F# quotations you
can get tree representation of the quoted expression...
0
Aho-Corasick string matching in C#
Tomáš Petříček
| publikováno 4. prosince 2005
I implemented this algorithm because I worked on one project where we needed to filter bad language in comments submited by users (You wouldn't believe what anonymous users sometimes write). First ...