使用 ValueInjecter 映射 null

发布于 2024-10-21 18:06:43 字数 220 浏览 1 评论 0原文

如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山人契 2024-10-28 18:06:43

对于您的场景,通常我会抛出一个错误,即用户尝试编辑不存在的实体,但无论如何,您可以这样做:

var o = repo.get(7);
var vm = new ViewModel();

if (o != null) vm.InjectFrom(o);

vm.InjectFrom(o ?? new Entity());

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:

var o = repo.get(7);
var vm = new ViewModel();

if (o != null) vm.InjectFrom(o);

or

vm.InjectFrom(o ?? new Entity());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文