English 中文(简体)
NSERBus 信息与人口
原标题:NServiceBus Messages and Encapsulation

我希望这不是一个次要问题。

我试图了解N ServiceBus的情况稍有改善。

我的信息班子就这样说:

public class Address // value object
    {
        public readonly string AddressLine1;
        public readonly string AddressLine2;
        public readonly string AddressLine3;
        public readonly string City;
        public readonly string Country;
        public readonly string PostCode;

        public Address(string addressLine1,
                       string addressLine2,
                       string addressLine3,
                       string city,
                       string country,
                       string postCode)
        {
            AddressLine1 = addressLine1;
            AddressLine2 = addressLine2;
            AddressLine3 = addressLine3;
            City = city;
            Country = country;
            PostCode = postCode;
        }
    }

问题在于NPO 载客不能处理(可以理解)并最后必须恢复车辆。 我可以参加这一学习活动......但是,有办法使用上述信息类别?

我认为,我不要把注意力放在N ServiceBus源代码上。 感谢!

最佳回答

如果你暴露出/私人确定的财产,而不是田地,我肯定会打工。

问题回答

我没有在一段时间内使用国家会计准则,但我记得,有一个contrib,其中包含一个





相关问题
synchronized message with nservicebus

I have a web service that needs to make a call to nservicebus in a synchronized manner. How can this be achieved ?

How do I correctly pool multiple message in NServiceBus?

I have an NServiceBus app which receives a particular message when a large database update is required. While this update is happening, I want to either somehow ignore all incoming messages of this ...

NServiceBus - Application as subscriber and worker service

I have a service which needs to run on multiple machines picking jobs off of a single queue ensuring each job is only undertaken by a single service. I also need to publish messages for all services ...

Server architecture question. (WCF+NServiceBus)

First of all i will describe current state: Server consists of several WCF services, hosted in one or several win services on diffirent machines. Service responsible for recieving data from ...

MSMQ Access issue in NServiceBus with asp.net web service

I am trying to implement publisher - subscribe in my project of asp.net (wcf) web services. When i am trying to create bus in global.asax protected void Application_Start(object sender, EventArgs e)...

How to configure nservicebus msmqtransport with code

I m just geting started with NServiceBus and can t figure out what I m missing when configuring the MsmqTransport in code. If I configure the publisher like this; IBus bus = Configure.With() ...

Getting the NServiceBus Distributor Sample To Work

I m trying to use the Distributor in the NServiceBus FullDuplex sample but I can t get it working. I ve been following the this guide Getting the NServiceBus Distributor Working, but it doesn t work. ...