Using a simple example:
- Presentation Tier : aspx and code behind.
- Business Tier: WCF with related logics
- Data Access Tier: WCF with entity framework
When I want to populate a grid view, there will be a need to call a method form the business logic, which in turns call the data access tier's method.
The methods and related logic are as follow.
Data Access Tier:
public SampleEntity[] LoadSampleEntity()
{
//retrieve SampleEntity from database.
}
Business Logic Tier:
public SampleEntity[] GetSampleEntity()
{
//call the proxy to access Data Access Tier
//Call LoadSampleEntity()
}
Presentation Tier:
protected void btn_OnClick()
{
//call the proxy to access Business Logic Tier
//Call GetSampleEntity()
//SampleEntity[] sampleEntity=BusinessLogic.GetSampleEntity();
//gridview.datasouce = sampleEntity
//gridview.databind();
}
Given this structure, if SampleEntity was modified, all the 3 tiers will require re-compiling.
Is there any way to reduce the need of re-compiling when new property/column is added to SampleEntity .
One way which I have worked on will be to convert SampleEntity[] to datatable type at Business Logic Tier, and pass the datatable over to Presentation Tier. However doing so removes the intellisense feature of EntityFramework in the Presentation Tier.