I'm working on a MVC WebAPI, that uses EF with POCO classes for storage.What I want to do is get rid of the "nameSpace" from the XML, so that the endpoints would return and accept xml objects without it. (json works just fine)\[code\]<ACCOUNT xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Platform.Services.AccountService.Data"><id>22</id><City i:nil="true"/><Country i:nil="true"/><Email>[email protected]</Email><Phone i:nil="true"/> ...\[/code\]I would like this to work\[code\] <ACCOUNT> <id>22</id> <City i:nil="true"/> <Country i:nil="true"/> <Email>[email protected]</Email> <Phone i:nil="true"/> ...\[/code\]Hopefully without having to decorate the POCO's with a bunch of attributes.