I have a model that looks something like this
public class User
{
public List<Action> Actions { get; set; }
}
public class Action
{
public DateTime CreatedOn { get; set; }
}
I’m trying to find a way to get the maximum value of CreatedOn from all actions across all users.
I’m new to RavenDB and I’m not sure if I should use a Map/Reduce or what.
Here is a complete sample: