Hello,
My .net class is meant to return an Entity to my client (which is a Flex application). The client only expects the fields of my Entity that are in my database's table. But the problem is that the Entity contains LOADS of extra-fields which are completely irrelevant to the client application, such as AuditorToUse, AuthorizerToUse, BuildInValidationByPassMode, a fields property, a FieldsCustomProperties, etc, etc.....
I'm not going to list them all here but there are quite a few. So how can I return an Entity that would contain only the fields I'm interested in (basically the one coming from my database's table)
thanks