Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
848 views
in Technique[技术] by (71.8m points)

model view controller - Below my code I have multiple list. I want to combine lst RequestCountVw and lstUnitTimeVw, is it possible and how?

using (var reader = command.ExecuteReader()){
DeploymentDBoardView.lstDeploymentDBoardvw = ((IObjectContextAdapter)db).ObjectContext.Translate<DeploymentDshBoardView>(reader).ToList();
reader.NextResult();
DeploymentDBoardView.lstRequestCountvw = ((IObjectContextAdapter)db).ObjectContext.Translate<RequestCountView>(reader).ToList();
reader.NextResult();
DeploymentDBoardView.lstUnittimevw = ((IObjectContextAdapter)db).ObjectContext.Translate<UnittimeView>(reader).ToList();
reader.NextResult();
DeploymentDBoardView.lstContactdetailvw = ((IObjectContextAdapter)db).ObjectContext.Translate<ContactdetailsView>(reader).ToList();}} return Ok(DeploymentDBoardView);
question from:https://stackoverflow.com/questions/65839977/below-my-code-i-have-multiple-list-i-want-to-combine-lst-requestcountvw-and-lst

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...