So I’m doing a project. MS SQL->WCF->Client (win32 application + asp.net MVC 3 web) I have worker with ado.net typed datasets till now, but now I have question…
What’s your opinion what should I use for WCF->Client Typed Datasets or something else?
Performance (speed) is preety important also….
Thanks in advance
So I’m doing a project. MS SQL->WCF->Client (win32 application + asp.net MVC 3 web)
Share
Strongly typed entities is the way to go. Dataset generally must be avoided for performance reasons.
ORMs such as NHibernate or Entity Fframework 4 must be used for turning database state to and from entities.