No announcements
Found 394599 threads
-
1 Votes
Exposing DTOs
Hi Nairooz, This is ok, and I don't see much issues with that... you may also consider sharing the same DTO library in both WCF projects (this is an option you ...Answered | 1 Replies | 3909 Views | Created by Nairooz Nilafdeen - Friday, August 28, 2009 5:00 AM | Last reply by rfreire - Friday, August 28, 2009 11:14 AM -
11 Votes
DTOs, Repositories, BALs
It doesn't matter if you are using one of the UI design patterns too such as MVC, MVP or MVVM, the ORM objects never make it to the UI controls , but rather ...Answered | 37 Replies | 2560 Views | Created by Belarmino Vicenzo - Monday, December 17, 2018 8:50 AM | Last reply by Petr B - Thursday, December 27, 2018 8:37 AM -
0 Votes
DTO object and BizTalk
Hi Amit, You can either create a custom pipeline that will convert the DTO to XML or call .NET code inside orchestration that will pick up the DTO object as file ...Answered | 2 Replies | 3306 Views | Created by Amit C More - Saturday, March 10, 2012 4:00 AM | Last reply by Amit C More - Saturday, March 10, 2012 12:27 PM -
0 Votes
How is POCO a replacement for DTO's
For some services sending complete entities over the wire enables the service to ease it's handling and making it less error-prone than manual DTO objects (since manual DTO ...Answered | 3 Replies | 5351 Views | Created by kfrost - Saturday, March 5, 2011 4:54 PM | Last reply by Alan_chen - Thursday, March 10, 2011 3:14 AM -
0 Votes
DTO, Interface, Mappers Ideea
DTO’s are essentially to reduce calls when working with a remote interface.Answered | 4 Replies | 6064 Views | Created by zapacila89 - Wednesday, July 22, 2009 7:10 AM | Last reply by Paul Gielens - Wednesday, July 29, 2009 9:55 AM -
1 Votes
Automapper and creating DTO class from stored procedure
You have a misconception of what a DTO is for and about.Answered | 2 Replies | 3088 Views | Created by Thomas Lee3 - Monday, October 1, 2018 6:20 PM | Last reply by Thomas Lee3 - Tuesday, October 2, 2018 2:14 PM -
1 Votes
DTO class serialization in xml
I am now looking for the vice versa way i.e. deserialize XML to DTO, do you know any why or if you can share any example with me then it will be great.Answered | 3 Replies | 4370 Views | Created by GurunGuns - Monday, September 14, 2009 10:51 PM | Last reply by Reed Copsey, Jr - Tuesday, September 15, 2009 3:44 PM -
0 Votes
Code First Objects and DTO objects - differences ?
Hi doug4jj, I think it is a design pattern issue, if your DTO's and entity are the same, you don't need to transfer the object.Answered | 6 Replies | 790 Views | Created by doug4jj - Tuesday, March 14, 2017 7:02 PM | Last reply by doug4jj - Friday, March 17, 2017 2:17 PM -
1 Votes
How to expose a DTO with a calculated field through WCF?
Maybe, you need to not use a DTO that is using auto properties.Answered | 1 Replies | 2350 Views | Created by David Armenteros - Thursday, March 8, 2018 6:22 PM | Last reply by DA924x - Thursday, March 8, 2018 7:42 PM -
0 Votes
Copy DTO to BO on server side???
to BO obejct (values) and from BO to DTO...Answered | 11 Replies | 4298 Views | Created by abhi0410 - Thursday, November 25, 2010 2:58 PM | Last reply by Rahul P Nath - Wednesday, December 1, 2010 8:11 AM -
2 Votes
How to use DTO for cammunication of WCF service?
The idea of a DTO is that putting your domain objects on service boundaries exposes your implementation to consumers of the service.Answered | 4 Replies | 8989 Views | Created by AjayGandhi - Friday, March 19, 2010 6:25 AM | Last reply by Richard Blewett - Friday, March 19, 2010 11:06 AM -
1 Votes
EF and DTO (insert/update)
here is what happening : i use wcf service and entity framework ( with lazy loading extension ) to get customer and all his orders from database, then Customer and all his ...Answered | 1 Replies | 6359 Views | Created by NamesisX - Monday, June 1, 2009 11:14 AM | Last reply by Gil Fink - Tuesday, June 2, 2009 6:00 AM -
0 Votes
What is difference between DTO and POCO classes
http://enterprisecraftsmanship.com/2015/04/13/dto-vs-value-object-vs-poco/ To me, POCO got introduced via the ADO.NET Entity Framework by MS to the .NET developer.Answered | 1 Replies | 2101 Views | Created by Mou_kolkata - Tuesday, January 12, 2016 9:31 AM | Last reply by DA924 - Tuesday, January 12, 2016 10:42 AM -
0 Votes
MVC4 WebApi, IQueryable, DTOs, and OData URI conventions
returning all DTO rows.Answered | 4 Replies | 6814 Views | Created by dwelden - Wednesday, June 20, 2012 4:31 PM | Last reply by Ashwini47 - Friday, June 22, 2012 2:50 PM -
0 Votes
Return IQueryable of DTOs from ServiceOperation
Server exposes a method with simple parameters that returns IQueryable (or at least IEnumerable) of my own DTOs (not entities).Answered | 5 Replies | 4931 Views | Created by Roman Koreshkov - Friday, October 12, 2012 4:16 PM | Last reply by Vitek Karas - MSFT - Monday, November 26, 2012 9:13 AM -
0 Votes
DTO Design
Actually instead of all employee list and list of all designations and i need to create DTO like single object with employee name, designation etc.Answered | 5 Replies | 141 Views | Created by Anonymous - Wednesday, October 9, 2013 8:35 AM | Last reply by Anonymous - Tuesday, July 15, 2014 2:51 AM -
0 Votes
DTO Design
In my design I have service/facade as the interface for the business layer and currently I am leaning toward calling the DTO assembler from facade?Unanswered | 4 Replies | 42 Views | Created by Anonymous - Wednesday, August 23, 2006 12:35 PM | Last reply by Anonymous - Wednesday, August 23, 2006 1:56 PM -
0 Votes
C# Service agent, passing "compatible" DTOs opposed to using the generated types?
It will always generate its own "DTO"s.Answered | 1 Replies | 4126 Views | Created by Miles Burton - Friday, September 5, 2008 3:21 PM | Last reply by Peter Ritchie - Friday, September 5, 2008 5:27 PM -
0 Votes
Database Update problem in ChangeSet object when using POCO/DTO
I rewrote my DTO update method as follows, and it works: [Update] public void UpdateAccEntConfigDTO(AccEntConfigDTO aecDTO) { // get ...Answered | 3 Replies | 4246 Views | Created by Martin Reynolds - a.k.a. renozu - Sunday, June 13, 2010 10:20 PM | Last reply by simmdan - Tuesday, June 22, 2010 3:48 AM -
0 Votes
DTO Design
If you want to pass a DTO to your presentation layer, design it to consist of just the data your presentation layer needs.Answered | 8 Replies | 55 Views | Created by Anonymous - Monday, December 30, 2013 8:45 PM | Last reply by Anonymous - Thursday, January 2, 2014 2:39 AM - Items 1 to 20 of 394599 Next ›
No announcements