Skip to main content

N-Tier Architecture Design Using MVC, Entity Framework and WCF




 











Comments

  1. Hi, nice description about N-Tier Architecture Design Using MVC, Entity Framework and WCF .Thanks for your help..

    -Aparna
    Theosoft

    ReplyDelete

Post a Comment

Popular posts from this blog

The Useful Sites and Articles

         Hi friends i would like to share some of the articles which are more useful and attract myself. Some of the sites and blogs are more useful for the beginners and experienced persons. We have a lot of information's in the below sites. Stack Overflow C Sharp Corner Code Project Asp.net Suresh        And if we required sample codes and projects, the below sites are useful. Planet Source code Codeplex       Some of the posts are attracting me at the time of reading. For Example       How to Became a Programmer , What is .Net Scope in Future - These are the article from C-sharp corner the author mahesh chand explains about the programming in .Net. It is quit useful for freshers who are going to start their carrier as programmer.

Comparisons between Enterprise Library and Entity Frame work

In .NET Framework 4.0 having huge improvements in entity-framework. I have specified some of them below. Sl.No Entity Framework 4.0 Enterprise Library 5.0 1. Compiled cached queries: It is simply a query for which you tell the framework to keep the parsed tree in memory so it doesn't need to be regenerated the next time you run it. So the next run, you will save the time it takes to parse the tree. Explanation: The first time you run this query, the framework will generate the expression tree and keep it in memory. So the next time it gets executed, you will save on that costly step. NO Support .Use Store Producers instead of hoc queries to improve the performance. 2. Model-First: Create your Entity Data Model and from that model generate DDL to create the database. Model –Last: Create your database first and Implement your Entities. 3. Dev...