服务层的AutoMapper

发布于 2024-12-29 01:40:45 字数 385 浏览 1 评论 0原文

我有一个 MVC 项目,我在其中使用 AutoMapper 将实体框架实体映射到视图模型。定义映射的代码位于应用程序启动时自动调用的 boostrapper 类中(App_Start、Global.asax)

我正在对代码进行一些重构,以将所有业务逻辑放入服务层中,因为我们需要实现每天运行的批处理进程,它执行与 MVC 应用程序相同的逻辑。

我遇到的问题之一是现在我需要将数据库实体映射到服务层中的某些域对象。我认为 MVC 应用程序中的一切仍然可以正常工作,因为引导程序仍在 Global.asax 中被调用。

有没有办法让我的映射代码同时适用于我的 MVC 应用程序和另一个非 MVC 应用程序(可能是 WCF 服务、控制台应用程序等)?我可以在哪里放置此映射代码,以便两个应用程序都调用它只有一次吗?

I have an MVC project where I am using AutoMapper to map my Entity Framework Entities to View Models. The code that defines the mappings is in a boostrapper class that is called automatically when the application starts (App_Start, Global.asax)

I am doing some refactoring of my code to put all of my business logic in a Service Layer because we need to implement a batch process that runs daily which is doing some of the same logic as the MVC app.

One of the problems I am running into is now I need to map my database entities to some domain objects in my service layer. I think everything would still work fine in the MVC application because the bootstrapper is still being called in Global.asax.

Is there a way I can have my mapping code work for both my MVC application and another non-MVC application (could be a WCF service, console app, etc.) Where can I put this mapping code so it would get called by both applications only once?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

甜警司 2025-01-05 01:40:45

这是静态类,可用于WCF服务初始化:

 public static class ServiceConfigurations
{
    private static bool mappingConfigured = false;

    public static void ConfigureMapping()
    {
        if (mappingConfigured)
        {
            return;
        }

        Mapper.CreateMap<Model1, Model2>();

        mappingConfigured = true;
    }

    public static void CleanupMapping()
    {
        Mapper.Reset();
        mappingConfigured = false;
    }
}

Here is static class, could be used for WCF services initialization:

 public static class ServiceConfigurations
{
    private static bool mappingConfigured = false;

    public static void ConfigureMapping()
    {
        if (mappingConfigured)
        {
            return;
        }

        Mapper.CreateMap<Model1, Model2>();

        mappingConfigured = true;
    }

    public static void CleanupMapping()
    {
        Mapper.Reset();
        mappingConfigured = false;
    }
}
尘曦 2025-01-05 01:40:45

为什么不直接将 global.asax 文件添加到您的服务项目中呢?

将您的映射放入一个新项目中,在两个项目中进行引用,然后就完成了。

Why not just add a global.asax file into your services project?

Throw your mappings into a new project, reference in both, and you are done.

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