WCF beginner’s guide
November 30, 2009 – 6:06 pm1. Create a WCF Service Library project
2. Create an entity object class
3. Annotate entity class with [DataContract] attribute.
4. Annotate fields (from class above) you want in the contract with [DataMember] attribute.
5. Next, create a I
6. Annotate with [ServiceContract] attribute.
7. Annotate methods with [OperationContract] attribute.
8. Create
9. Annotate with [ServiceBehaviour] attribute.