Replies: 2 comments
-
After receiving data you need to set values for them (ex: foreach) |
Beta Was this translation helpful? Give feedback.
0 replies
-
In your private class MyRetrieveHandler : RetrieveRequestHandler<MyRow> {
protected override void OnReturn()
{
Row.NotMappedField = defaultValue;
base.OnReturn();
}
}
private class MyListHandler : ListRequestHandler<MyRow> {
protected override MyRow ProcessEntity(MyRow row)
{
row.NotMappedField = defaultValue;
return base.ProcessEntity(row);
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to set one of the NotMapped property in a Row class using other properties in same Row class. I cannot use Expression since I am loading Row from stored procedure and not from query.
I tried setting NotMapped property default value, not null but nothing seems working. This property gets completely ignored when getting the result.
Beta Was this translation helpful? Give feedback.
All reactions