3

我正试图绕过ServiceStack并利用它来公开 RESTful 服务。

我目前正在使用 MVC/Service/Repository/UnitOfWork 类型模式,其中获取客户的基本操作可能如下所示:

MVC Controller Action --> Service Method --> Repository --> SQL Server

我的问题是:

  1. 我的 SS 服务会返回什么?域对象?还是我返回一个包含客户集合的 DTO?如果是这样,客户是什么?领域对象或视图模型或??
  2. SS 服务是否应该取代我的服务层?
  3. 我在这里采取了完全错误的方法吗?

我想我有点困惑如何让所有这些并排生活。

域对象

public class Customer
{
    public int Id {get;set;}
    public string FirstName {get;set;}
    public string LastName {get;set;}
}

查看模型

public class CustomerViewModel
{
    public int Id {get;set;}
    public string FirstName {get;set;}
    ....
}

控制器

public class CustomersController : Controller
{
    ICustomerService customerService;

    public CustomersController(ICustomerService customerService)
    {
        this.customerService = customerService;
    }

    public ActionResult Search(SearchViewModel model)
    {
        var model = new CustomersViewModel() {
            Customers = customerService.GetCustomersByLastName(model.LastName); // AutoMap these domain objects to a view model here
        };

        return View(model);
    }
}

服务

public class CustomerService : ICustomerService
{
    IRepository<Customer> customerRepo;

    public CustomerService(IRepository<Customer> customerRepo)
    {
        this.customerRepo = customerRepo;
    }

    public IEnumerable<Customer> GetCustomersByLastName(string lastName)
    {
        return customerRepo.Query().Where(x => x.LastName.StartsWith(lastName));
    }
}
4

1 回答 1

3

首先,这只是个人喜好,我会摆脱您的存储库层,直接从服务操作访问/验证您的数据。如果您所做的只是传递参数,那么拥有所有这些额外的层是没有意义的。

在回答您的问题时:

1)您的服务应该返回 DTO(s)(source),您提到您正在使用 MVC 应用程序,因此请确保您在操作中使用 IReturn 接口,这将允许您var customers = client.Get(new GetCustomers());在您的控制器动作,见这里。如何使用 DTO 取决于您,如果您愿意,可以将其用作 ViewModel,或者如果您需要其他来源的更多属性,则可以创建单独的 ViewModel。

2) 是的,ServiceStack 是您应用程序中的服务层,通常您的所有交互都会通过这一层,因此不需要所有这些不同的层(我上面的第一点),看起来好像这个应用程序的架构比它需要的要复杂得多。

3)我想是的,你似乎在考虑你的应用程序,删掉所有这些层

根据您上面的示例并遵循此处的建议。我会做这样的事情:

项目结构(这些可以是一个项目中的文件夹,也可以根据您的应用程序的大小分为不同的项目:)

尽管对于只有少量服务的小型项目,可以将所有内容都放在一个项目中,并在需要时根据需要简单地扩展您的架构。

- SamProject.Web
    App_Start
        AppHost.cs
    Controllers
        CustomerController.cs

- SamProject.ServiceInterface 
    Services
        CustomersService.cs
    Translators                 // Mappings from Domain Object > DTO
        CustomersTranslator.cs

- SamProject.Data               // Assumes using EF
    CustomersContext.cs
    Customer.cs

- SamProject.ServiceModel     
    Operations               
        CustomersService            
            GetCustomers.cs
            GetCustomer.cs
            CreateCustomer.cs           
    Resources
        CustomerDTO.cs

代码

DTO:

public class CustomerDTO
{
    public int Id { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
}

手术:

[Route("/customers/{Id}")]
public class GetCustomer : IReturn<CustomerDTO>
{
    public int Id { get; set; }
}

[Route("/customers")]
public class GetCustomers : IReturn<IEnumerable<CustomerDTO>>
{
    public string LastName { get; set; }
}

服务:

public class CustomersService : Service
{
    private readonly CustomerContext _dbCustomerContext;

    public CustomersService(CustomerContext dbCustomerContext)
    {
        _dbCustomerContext = dbCustomerContext;
    }

    public object Get(GetCustomer request)
    {
        return _dbCustomerContext.Customers
               .FirstOrDefault(c => c.Id == request.Id)
               .Select(c => c.Translate());
    }

    public object Get(GetCustomers request)
    {
        if (string.IsNullOrEmpty(request.LastName))
        {
            return _dbCustomerContext.Customers.ToList()
                   .Select(c => c.Translate());
        }

        return _dbCustomerContext.Customers
               .Where(c => c.LastName == request.LastName).ToList()
               .Select(c => c.Translate());
    }
}

控制器:

public class CustomersController : Controller
{
    private readonly JsonServiceClient _client;

    public CustomersController(JsonServiceClient client)
    {
        _client = client;
    }

    public ActionResult Search(SearchViewModel model)
    {
        var customers = _client.Get(new GetCustomers
        {
            LastName = model.LastName
        });

        return View(customers);
    }

}

笔记

  • 我喜欢将 DTO(s) 视为资源
  • 我喜欢根据代码的意图将我的代码分成一个结构化的文件夹结构,这只会在以后代码库变得更大但在中小型应用程序上你可能不需要分离代码时有所帮助像这样出来
  • 我还没有谈到其他功能,例如日志记录、验证、IoC(仅显示具体实现)等。
  • Translate是 Translators 中的一种扩展方法,或者您可以使用内置的翻译器
  • In ServiceModel I do have a clearly defined folder structure, however, the namespace of my service operations is just SamProject.ServiceModel not SamProject.ServiceModel.Operations.CustomersService. My resources, however, are in the SamProject.ServiceModel.Resources namespace.
于 2013-09-15T20:00:12.900 回答