You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List<Item> items = new List<Item>
{
new Item { Id = 1, Name = "Apple", Price = 50 },
new Item { Id = 2, Name = "Banana", Price = 120 },
new Item { Id = 3, Name = "Cherry", Price = 80 },
new Item { Id = 4, Name = "Date", Price = 200 }
};
Hello,
I would need a simple example
I have
and
Expression<Func<Item, bool>> query = item => item.Price > 100;
I would need to serialize this function using System.Text.Json.
Then deserialize it and apply it to items.
Thank you.
The text was updated successfully, but these errors were encountered: