Info
Version: | 1.0.1 |
Author(s): | zuahmed |
Last Update: | Wednesday, July 18, 2012 |
.NET Fiddle: | Create the first Fiddle |
NuGet Url: | https://www.nuget.org/packages/ServiceBus.Extensions.PromotedProperties |
Install
Install-Package ServiceBus.Extensions.PromotedProperties
dotnet add package ServiceBus.Extensions.PromotedProperties
paket add ServiceBus.Extensions.PromotedProperties
ServiceBus.Extensions.PromotedProperties Download (Unzip the "nupkg" after downloading)
Dependencies
- ServiceBus.v1_0(0.0.5.0)
Tags
The extensions enables you to mark parts of your data model [DataContract] as promoted properties. These marked properties are then automatically lifted and promoted in the outgoing BrokeredMessage.
Sample usage:
==========
public class Order
{
public double Amount { get; set; }
[PromotedProperty]
public string ShipCity { get; set; }
}
[ServiceContract]
public interface IOrderService
{
[OperationContract(Name = "SubmitFlat", IsOneWay = true)]
[PropertyPromotionBehavior]
void Submit(double amount, [PromotedProperty] string shipCity);
[OperationContract(IsOneWay = true)]
[PropertyPromotionBehavior]
void Submit(Order order);
}
See following blog post for implementation details.
http://zamd.net/2011/05/25/pubsub-with-wcf-part-2/.