Is there any way to avoid the save of a property in a document? For example:
public class User{
public string userId { get; set; }
public string name { get; set; }
public string lastName { get; set; }
// And If I don't want to store this property. What can I do?
public string lastName { get { return $"{name} {lastName}"; }}
}
Hi,
Is there any way to avoid the save of a property in a document? For example:
BR.