作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据我的阅读,标准是继承 Profile 类,以便 Automapper 检测 map 。 https://automapper.org/
public class GamerVM : Profile
{
public GamerVM()
{
CreateMap<GamerVM, Gamer>();
CreateMap<Gamer, GamerVM>();
}
public int Id { get; set; }
public string Name { get; set; }
public string Tag { get; set; }
}
如果我在我的 View 模型上继承了这个类,Json 将返回额外的属性:
{
"id": 8,
"name": "Ashton Heir",
"tag": "Legend",
"defaultMemberConfig": {
"nameMapper": {
"getMembers": {},
"namedMappers": [
{
"methodCaseSensitive": false
},
{},
{
"prefixes": [
"Get"
],
"postfixes": [],
"destinationPrefixes": [],
"destinationPostfixes": []
}
]
},
"memberMappers": [
{
"nameMapper": {
"getMembers": {},
"namedMappers": [
{
"methodCaseSensitive": false
},
{},
{
"prefixes": [
"Get"
],
"postfixes": [],
"destinationPrefixes": [],
"destinationPostfixes": []
}
]
}
},
{
"sourceMemberNamingConvention": {
"splittingExpression": {
"pattern": "(\\p{Lu}+(?=$|\\p{Lu}[\\p{Ll}0-9])|\\p{Lu}?[\\p{Ll}0-9]+)",
"options": 0
},
"separatorCharacter": ""
},
"destinationMemberNamingConvention": {
"splittingExpression": {
"pattern": "(\\p{Lu}+(?=$|\\p{Lu}[\\p{Ll}0-9])|\\p{Lu}?[\\p{Ll}0-9]+)",
"options": 0
},
"separatorCharacter": ""
}
}
]
}
我这样做正确吗?有没有办法让 JSON 忽略这些额外的属性?
最佳答案
您的模型不应继承 Profile。您将 Profile 子类化以配置模型到模型的映射。
public class GamerMappingProfile : Profile
{
public GamerMappingProfile()
{
CreateMap<Gamer, GamerVM>();
CreateMap<GamerVM, Gamer>();
}
}
然后在创建映射器实例时加载配置文件。
var config = new MapperConfiguration(cfg => {
cfg.AddProfile<GamerMappingProfile>();
cfg.AddProfile<MyOtherProfile>();
});
var mapper = config.CreateMapper();
现在您的模型很干净了——它只包含您的属性并且序列化不需要额外的自定义代码。
自动扫描您的个人资料
http://docs.automapper.org/en/stable/Configuration.html#assembly-scanning-for-auto-configuration
复制自上面的链接
// Scan for all profiles in an assembly
// ... using instance approach:
var config = new MapperConfiguration(cfg => {
cfg.AddProfiles(myAssembly);
});
// ... or static approach:
Mapper.Initialize(cfg => cfg.AddProfiles(myAssembly));
// Can also use assembly names:
Mapper.Initialize(cfg =>
cfg.AddProfiles(new [] {
"Foo.UI",
"Foo.Core"
});
);
// Or marker types for assemblies:
Mapper.Initialize(cfg =>
cfg.AddProfiles(new [] {
typeof(HomeController),
typeof(Entity)
});
);
关于c# - automapper inherting Profile 在 json 中返回额外的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53213318/
根据我的阅读,标准是继承 Profile 类,以便 Automapper 检测 map 。 https://automapper.org/ public class GamerVM : Profile
我有一堆 Python 脚本,它们使用通用代码读取不同类型的输入和写入输出文件。 这些是化学结构文件。一些示例文件类型是 .smi 或 .sdf。 默认情况下,我希望其中一些脚本以“smi”文件格式输
我是一名优秀的程序员,十分优秀!