Approaches to handling simple expressions in C#
Every now and then we get asked if there’s an easy way to parse user input into filter conditions. Say, for example, we have a viewmodel of type DataThing:
public class DataThing
{
public string Name;
public float Value;
public int Co...
wiseowls.hashnode.dev3 min read