Answer the question
In order to leave comments, you need to log in
Are there patterns for updating an object graph?
Good afternoon!
The question arose of updating the entity graph. Example:
public class Animal
{
public string Title {get;set;}
public string Description {get;set;}
public ICollection<DateOfWak> DatesOfWalk {get;set;}
}
public class DateOfWalk
{
public string Title {get;set;}
public DateTime Date {get;set;}
public ICollection<Place> Places {get;set;}
}
public class Place
{
public string Title {get;set;}
}
System.Reflection
) or expression trees System.Linq.Expressions
also considered as an option.
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question