Is this the Crudy anti pattern?

Posted by miker169 on Stack Overflow See other posts from Stack Overflow or by miker169
Published on 2010-03-16T08:12:44Z Indexed on 2010/03/16 8:16 UTC
Read the original article Hit count: 199

Filed under:
|
|

Currently I am creating a WCF service which has to connect to a DAL which, just connects to a database using ADO.net and stored procedures.

The DAl writes its responses from the database to a datacontract which is passed over the wire to the client via the service.

I was reading that this may possibly be the anti pattern 'CRudy Interface', but I wasn't sure as I am sharing the datacontract.

If I am using an anti pattern, can anyone suggest a better pattern to use for the behavior I require?

Thanks

© Stack Overflow or respective owner

Related posts about wcfservice

Related posts about wcf