How to get detail table entityid in AfterSave method of master #5360
-
in AfterSave method of Master repository in Masterdetail Form how to get entityid of details table. when I check current row it shows master entityid but details entityid is null |
Beta Was this translation helpful? Give feedback.
Answered by
minhhungit
Jan 18, 2021
Replies: 1 comment 1 reply
-
Haa, I've just seen this post, I posted solution on the #4370 some minutes ago protected override void AfterSave()
{
base.AfterSave();
var products = this.Connection.List<Entities.OrderProductRow>(new Criteria(Entities.OrderProductRow.Fields.OrderId) == (int)Row.Id);
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
reach2rv
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Haa, I've just seen this post, I posted solution on the #4370 some minutes ago