0
votes
0answers
6 views
.NET Entities with Child Elements
Hi,
i'm building a DAL in C# that is connecting to an ancient versione of informix, so i cannot use entity framework. I wrote the entities classes referencing them self in a paren …
0
votes
2answers
55 views
DTO/Command Pattern Question
There was a very interesting discussion on LosTechies regarding AutoMapper(an argument for/against 2-way mapping).
This actually caught my attention due to the problem I'm current …
1
vote
5answers
49 views
DTOs vs Serializing Persisted Entities
I'm curious to know what the community feels on this subject. I've recently come into the question with a NHibernate/WCF scenario(entities persisted at the service layer) and reali …
2
votes
4answers
1k views
Entity Framework + AutoMapper ( Entity to DTO and DTO to Entity )
Hello.
i got some problems using EF with AutoMapper. =/
for example :
i got 2 related entities ( Customers and Orders )
and theyr DTO classes :
class CustomerDTO
{
public st …
3
votes
2answers
109 views
Should POCOs be derived from DTOs or better not?
Hi,
When creating an n-tier solution, I don't want to expose my business objects, but use DTO's instead of this. On the other side, I don't want to doubly define objects and write …
21
votes
6answers
2k views
POCO vs DTO
POCO = Plain Old CLR (or better: Class) Object
DTO = Data Transfer Object
In this post there is a difference, but frankly most of the blogs I read describe POCO in the way DTO is …
2
votes
5answers
109 views
Is it possible to loop through a classes members in java?
I have a DTO that has a whole bunch of members. I was wondering if Java supports the idea of a for(in) for the class. I don't think it does, but it would save me a ton of grief if …
2
votes
1answer
61 views
Share DTO objects between WCF services
I feel this is a stupid question even before asking, but my brain isn't working too well right now. I have two WCF services "CountryService" and "FloristService".
Now CountryServ …
0
votes
0answers
26 views
Mapping class model to dto
Trying to map a model class to service dto class where both have a custom class property.
i.e.
class Source
{
public CustomObject MyProperty {get;set;}
}
class Destination
{
pub …
1
vote
3answers
271 views
Difference between DTO, VO, POJO, JavaBeans?
Have seen some similar questions here and here.
Can you also please tell me the contexts in which they are used?? Or the purpose of them?
1
vote
1answer
62 views
Linq2Sql generated classes able to put into a separate project?
Can anyone tell me if its possible to extract the linq2sql generated classes into a separate project in c#? - I presume I can just create the files and then copy them to a new proj …
0
votes
1answer
44 views
Updating entities with dependencies with NHibernate
Say we have an EntitySlave object. It has a dependency with EntityMaster.
To get an ID of EntityMaster in EntitySlave we lazy load it and access through Nhibernate proxy instance: …
1
vote
3answers
141 views
DTOs: best practices
I am considering to use DTOs instead of passing around my domain objects. I have read several posts here as well as elsewhere, and i understand there are several approaches to gett …
4
votes
4answers
1k views
Best Practices For Mapping DTO to Domain Object?
I've seen a lot of questions related to mapping DTOs to Domain Objects, but I didn't feel they answered my question. I've used many methods before and have my own opinions but I'm …
1
vote
1answer
86 views
NHibernate and DTOs
I am considering bringing NHibernate into a project but have a question on how read only DTOs would be implemented. Entities are easy, but what about scenarios where you have a fie …
