Sunday, March 30, 2014

Entity Frame Work Features " Ver. 5 to Ver. 6.1"

Entity Framework Changes from 4.0 to 6.1

see how much its changed from start to now.



EF 6.1

This release is currently being worked on, we'll add more feature specifications as we progress.

EF 6

These are the specs created for the EF6 release. Some smaller features/changes do not have specs, visit the EF Version History page for a complete list of features/changes.

EF 5

The EF5 release was largely completed prior to moving to CodePlex, these specs only include the final set of changes made in EF5. Visit the EF Version History page for a complete list of features/changes.
Information is taken from https://entityframework.codeplex.com

Data Access (telerik) vs Entity Framework (microsoft)


Comparison of Data Access 
and Entity Framework 5
Feature
Data Access
Entity Framework 5.0
Visual Designer
Fluent Mapping API
Batch Operations in Visual Designer 
Enumerations support in Visual Designer
Limited
LINQ support
Code generation for WCF services
Code generation for ASP.NET Web API services 
Stored procedures & functions support
Fetch Optimizations
Limited
Dynamic Model Modifications
Attach or Detach Object Graph
Limited
Custom Types Framework
DDL Capabilities
DML Capabilities
Spatial Data Types
Built-in Validation Frameworks
Command line generation tools
.NET 3.5 Support
.NET 4.0 Support
.NET 4.5 Support
Optimistic Concurrency
Pessimistic Concurrency
Built-In L2 Cache
Advanced Connection Pooling
Pure XML mapping
Pure Attributes mapping
Data Transfer Objects (DTO)
Self-Tracking Entities

This info is taken from www.telerik.com

Secure you Asp .NET by Web.config & Global.ascx?

Add to Global.ascx protected void Application_BeginRequest(object sender,EventArgs e)     {         //to remove x frame         Resp...