I'm trying to Setup WCF Service to create an entry in database table and return the same along with bunch of related data as Response of service.
I'm using EF with Repository Pattern to do all DataAccess work. Since the passing parameters are quiet huge list(15+).
Complex type (DTO) is much cleaner way of doing this?. or any other alternative for this.
I'm looking for cleaner and simple implementation...