Posts

Top 5 Features of Entity Framework Version 7 Every Dot Net Developers Should Know

Image
Introduction: Entity Framework is an Object Relational Mapper (ORM) which is a type of tool that simplifies mapping between objects in your software to the tables and columns of a relational database. Latest Updated Complete ASP.NET MVC Course Content - Free PDF Link  EF is an open source ORM framework for ADO.NET which is a part of .NET Framework. Initially, Entity framework came with less features and some functionality. There were continuous changes made in the Entity framework as a result. EF has become more popular and comes with lots of new features in every release. Checkout the Entity Framework Version 7 Features below, Lightweight and extensible New Data Stores Unique Constraints New Platforms Shadow Properties Here we are going to discuss about New Features of Entity Framework 7 Lightweight and Extensible : In entity Framework 7 You can use only that extensions which are useful to your project. But the  concepts are same as EF als

Top 100 Microsoft Dot Net Interview Questions with Answers

1. What is C-Sharp (C#)? C# is a type-safe, managed and object oriented language, which is compiled by .Net framework for generating intermediate language (IL). 2. Explain the types of comments in C#? Below are the types of comments in C# – -->Single Line Comment Eg : // -->Multiline Comments Eg: /* */ -->XML Comments Eg : /// 3. List out the differences between Array and ArrayList in C#? Array stores the values or elements of same data type but arraylist stores values of different datatypes. Arrays will use the fixed length but arraylist does not uses fixed length like array. 4. Why to use “using” in C#? “Using” statement calls – “dispose” method internally, whenever any exception occurred in any method call and in “Using” statement objects are read only and cannot be reassignable or modifiable. 5. What is ASP.Net? It is a framework developed by Microsoft on which we can develop new generation web sites using web forms(aspx), MVC, HT

History of ASP.NET MVC Framework(Infographic)

Image
Introduction: Microsoft had introduced ASP.NET MVC in .Net 3.5 and then many features have been added. ASP.NET MVC(Model-View-Controller) is a Web Application Framework. MVC is highly testable open source framework. Here we will discuss released version history of ASP.NET MVC Framework. ASP.NET MVC Latest Updated - Free PDF Link

Top 7 New Features of C# 7.0(Infographic)

Image
Introduction: In C# 7, a lot of new features have been introduced, and also enhancement have been done for some features. Given below is the Top features of  C# 7.0 . Microsoft Dot Net Topics Latest Updated   – FREE PDF 

Complete Dot Net Topics to be Professional Dot Net Developer

Image
Preparing for .NET interview can be little hard because you do not know what to expect, especially if you are New to the .NET development. With this article, It gives you a platform to learn programs in .NET language, you get some basic idea and become job ready. Following is a list of important .NET developer interview questions and topics that frequently are asked. Dot Net Topics Latest Updated - FREE PDF Download Link FRAMEWORK CONCEPTS .NET Framework introduction Framework Components Types of Applications developed using MS.NET Base Class Library/Framework Class Library Namespaces, CLR MS.NET Memory Management / Garbage Collection CTS,CLS JIT Compilers C# Overview of C# Datatypes & Variables Declaration Implicit and Explicit Casting Enum and Constant Control Structures Arrays,Methods,Out and Parameters OOPS Classes Objects Encapsulation Inheritance Polymorphism Abstract Interfaces Delegates EXCEPTION HANDLING Introduct

Important Tools For Dot NET Development

Image
Microsoft Visual Studio: Microsoft Visual Studio is the important part of .NET Development. Microsoft Provides Microsoft Visual Studio it is one of the tools for Integrated Development Environment. Microsoft API, Micro-soft windows, and Microsoft Silverlight platforms are used in Visual Studio. It Supports Code editor, Code Debugger and Supports many Programming Languages. NuGet: Microsoft Development Platform Designed the NuGet. It is a free and Open Source Package.In Command Line and Automated with Scripts, the NuGet can be used. NuGet mainly Supports .NET Framework.Dot NET Developers mainly focused on NuGet. Trending Now:  Future of Dot Net Development NUnit: In .NET Framework, NUnit is used for Unit Testing Framework. It is the Open Source Platform for Microsoft.NET. NUnit Provides the Console Number Which is used in Execution Test. Advanced Feature of Dot Net Framework Web Essential Web Essential is the most important tool for Web developer and Its Extend w

Unit Testing in ASP.NET MVC - Easy Guide for Beginners and Professional

Image
What is Unit Testing ?   Unit tests are definitely becoming a need-to-have skill for developers to confirm their code does what it should for production.  1.In real world every application comprises of many modules. For instance consider a simple E-Commerce application may comprises of Inventory Module, Customer management Module, Order module etc.  2. Every Module is made of using more than one classes. 3. Every class exposes many functionalities in the form of functions. In Unit Testing we test these functions individually in an automated manner. Get Easiest & Simplest idea about ASP.NET MVC What are some general guidelines for Unit Testing?   Make sure you unit tests tests what needs to be unit tested…and nothing more.  If you have a simple POCO (Plain Old CLR Object) with a list of properties with no implementation or business rules behind it, I’m guessing you don’t need to test it. Your code should be unit testable. If it’s not, you may need to ret