在Automapper中使用组
我们可以在 AutoMapper 中使用 C# 和实体框架的 group by 吗?你能举个例子吗?
CreateMap<x, y>()
.ForMember(destination => destination.Id)
options => options.MapFrom(source => source.Id)
.ForMember(destination => destination.AktifMi,
options => options.MapFrom(source => true));
如果您在这里申请,我会很高兴
var y = _context.XXX.OrderByDescending(i => i.Id);
var ca = _mapper.ProjectTo<x>(y);
Can we use group by in AutoMapper with C# and Entity Framework? Can you show an example please?
CreateMap<x, y>()
.ForMember(destination => destination.Id)
options => options.MapFrom(source => source.Id)
.ForMember(destination => destination.AktifMi,
options => options.MapFrom(source => true));
I will be glad if you apply here
var y = _context.XXX.OrderByDescending(i => i.Id);
var ca = _mapper.ProjectTo<x>(y);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在Automapper中做任何您喜欢的事情。
您只需要正确的型号即可将源映射到您的目的地。
这是样本片段。
让我知道您是否还有其他问题,谢谢。
you can do whatever you like in automapper.
You just need the correct model to map the source to your destination.
here is a sample snippet.
Let me know if you have any further question, Thank you.