使用 ValueInjecter 映射 null
如何使用 valueinjecter 将 null 映射到对象?当我这样做时它会抛出错误。
除了 InjectFrom()
之外,我还需要使用其他东西吗?
更多信息
我有一个返回对象域的存储库。然后我想将此域映射到视图模型。如果对象不存在,存储库将返回 null。我无法将空对象映射到视图模型。我该如何实现这个目标?
How do I map a null to an object using valueinjecter? It throws an error when I do this.
Do I need to use something else other than InjectFrom()
?
more info
I have a repository that returns an object domain. I then want to map this domain to a viewmodel. The repository will return null if the object doesn't exist. I cannot map a null object to the viewmodel. How do I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于您的场景,通常我会抛出一个错误,即用户尝试编辑不存在的实体,但无论如何,您可以这样做:
或
for your scenario usually I would throw an error that the user tries to edit an entity that doesn't exist, but anyway, you could do it like this:
or