dynamic data in .net 3.5 SP1 -- performance, multi-tier

  • Thread starter Thread starter Ryan Liu
  • Start date Start date
R

Ryan Liu

Hi,

I am going to develop a new application, I found .net 3.5 SP1 comes with new
feature called dynamic data.

My question is :

1 How about the performance of that? Is it using lots of reflection etc so
slow down the application?

2 And is that against the idea of multi-tier separation?

That is dynamic only suitable for quick and dirty small application, or it
can also be used in serious business application?

Thanks a lot!
Ryan
 
Ryan said:
2 And is that against the idea of multi-tier separation?

Most ASP.NET shops that are concerned about security, using a Windows
DNA architecture of logical and physical separation of the tiers and
tier boundaries to implement a secured infrastructure would never use
this development tool for a solution facing the Internet.

On the other hand, some ASP.NET shops would use it, because they are
already doing direct connections to the database from the UI in the Code
Behind file with solutions facing the Internet.
That is dynamic only suitable for quick and dirty small application, or
it can also be used in serious business application?

Using an ASP.NET solution facing the public Internet that was using this
development tool, it would be questionable if one is concerned about
security.

However, I see no reason, and I would have no problems using the
solution for a Web Intranet (behind the firewall) facing enterprise
solution.
 
Back
Top