Posts

Showing posts with the label .Net Framework

.NET Framework and Architecture

Image
his article will help your in understanding .NET and .NET architecture. What is the .NET Framework? The .NET Framework is a new and revolutionary platform created by Microsoft for developing applications .    It is a platform for application  developers . It is a Framework that supports Multiple Language and Cross language integration. IT has IDE (Integrated Development Environment). Framework is a set of utilities or can say building blocks of your application system. .NET Framework provides GUI in a GUI manner. .NET is a platform independent but with help of Mono Compilation System (MCS). MCS is a middle level interface. .NET Framework provides interoperability between languages i.e. Common Type System (CTS) . .NET Framework also includes the .NET Common Language Runtime (CLR), which is responsible for maintaining the execution of all applications developed using the .NET library. The .NET Framework consists primarily of a gigantic l...

What is new in EF7

ere is a list of some of the new features coming in Entity Framework 7. The vision for EF7 is “a core framework that handles concepts common to most data stores with provider specific extensions that become available when you target a specific provider”. The top priority of EF7 is its use in other applications that target the full .NET (WPF, Windows Forms, Console, and ASP.NET 4). EF7 will be the default data stack for ASP.NET 5 applications. The initial release of EF7 is not expected to support all platforms like Phone/Store applications. SQL Server will be available for data support in ASP.NET 5. In coming days, it will also have PostgreSQL to support the standard Mac/Linux environment. Some of the functionality of EF7 like be lazy loading and inheritance mapping patterns are excluded from the initial release of ASP.NET 5. The initial ASP.NET 5 release will have the following features: Complete in-flight features Fix bugs Add test coverage Test and imp...