博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AutoMapper.EF6
阅读量:5160 次
发布时间:2019-06-13

本文共 881 字,大约阅读时间需要 2 分钟。

https://github.com/AutoMapper/AutoMapper.EF6

 

Extensions for AutoMapper and EF6This contains some useful extensions I've used with AutoMapper and EF6. Instead of this:Mapper.CreateMap
() .ForMember(d => d.FullName, opt => opt.MapFrom(src => src.FirstName + " " + src.LastName));var employees = await db.Employees.ProjectTo
().ToListAsync();You can do this instead:public class Employee { [Computed] public string FullName { get { return FirstName + " " + LastName; } }}Mapper.CreateMap
();var employees = await db.Employees.ProjectToListAsync
();This package wraps up calling ProjectTo, the DelegateDecompiler Decompile/DecompileAsync methods, and then the LINQ methods to execute the queryable (ToList, ToArray, Single, SingleOrDefault etc).

 

转载于:https://www.cnblogs.com/shiningrise/p/5615814.html

你可能感兴趣的文章
.net From 验证 webconfig 配置
查看>>
poj3764 The XOR Longest Path【dfs】【Trie树】
查看>>
【社会/人文】概念的理解 —— 断舍离、饭(饭制版)
查看>>
基本乐理知识
查看>>
使用 LaTex 制作个人简历(CV,英文版)
查看>>
走遍中国 —— 大西南
查看>>
yum 和 apt-get
查看>>
TypeError: t is null
查看>>
Git使用教程
查看>>
无视编码都统一转成unicode 然后截断 例如 。“发发发发发发” 操作之后显示为 “发发发发...”...
查看>>
正则表达式匹配号码
查看>>
mysql 主机免密登录设置
查看>>
YJX_Driver_030_实战EXE和SYS通信(其它模式)
查看>>
mvc,mvp,mvvm
查看>>
Ubuntu18.04上安装java
查看>>
jsp tld的function 自定义方法扩展
查看>>
HDU 4819 Mosaic 【二维线段树】
查看>>
extjs xtype(转)
查看>>
duoxueke
查看>>
iOS开发之iOS6.0\iOS7.0\iOS8.0的UIAlertView message 文字对齐设置
查看>>