Skip to content

Use case: Where filter

christiandelbianco edited this page Jun 18, 2017 · 10 revisions

Notification's filter condition based on record value can be achieve using the way showed below.

IMAGE ALT TEXT HERE

Let's assume a C# model as:

public class Category
{
        public int Id { get; set; }
        public string Code { get; set; }
        public decimal Price { get; set; }
}

Install NuGet package:

IMAGE ALT TEXT HERE