- Entity Framework 6.0 Code FirstNov 07, 2014. In this article, we will learn the basics of the Entity Framework Code First approach by creating a simple console application, but are new to Entity Framework.
- Code First Migrations in Entity FrameworkNov 07, 2014. This article provides an overview of Code First Migrations in Entity Framework.
- How Entity Framework WorksNov 02, 2014. In this article I am going to explore some interesting and important constructs of Entity Framework.
- A Quick Start on MVCOct 16, 2014. In this session we will describe the basic CRUD operations using MVC and Entity Framework.
- Logging and Intercepting Database Operations With Entity Framework 6.0Oct 13, 2014. In this article you will learn how to log and intercept database operations with Entity Framework 6.0.
- Connection Management in Entity Framework 6.0Oct 13, 2014. In this article you will learn about Connection Management in Entity Framework 6.0.
- Model First Approach in ASP.Net MVC 5Oct 01, 2014. This article describes the Model First Approach and how to do CRUD Operations in ASP.NET MVC 5 Applications in Visual Studio 2013.
- ADO.Net Entity Framework DemoSep 27, 2014. This article introduces the Entity Framework for Entity Framework beginners that have already worked with ADO.Net.
- How to Join Two Tables From Different Databases Using Entity FrameworkSep 22, 2014. This article explains how to join two different tables from two different databases, or we may say how to join two tables from two different contexts, in Entity Framework.
- Working With Stored Procedures Using Entity Framework: Part 3Sep 18, 2014. This article describes how to work with Stored Procedures using the Entity Framework in an ASP .Net Web Forms Application.
- Entity Framework 6.0: NGen.exe and Startup PerformanceSep 18, 2014. In this article you will learn NGen.exe and Startup Performance in Entity Framework 6.0.
- Working With Transaction in Entity Framework 6.0Sep 15, 2014. In this article you will learn how to work with transactions in Entity Framework 6.0.
- Get Comma Separated Values From SQL Server Using Entity Framework (EF)Sep 11, 2014. This article describes how to get column values in one comma separated string using Entity Framework (EF) .
- Code-First Stored Procedure Entity Framework 6.0Sep 10, 2014. In this article you will learn about Code-First stored Procedures Entity of Framework 6.0.
- Working With Stored Procedures Using Entity Framework: Part 2Sep 08, 2014. This article describes how to use the Entity Framework code in the Web Forms Project Template and do the CRUD Operations.
- Expression<Func<>> vs Func<>Sep 02, 2014. In this post you will learn the difference between Expression<Func<>> and Func<> and thier usages.
- CRUD Operation Using Entity Framework Code-FirstAug 26, 2014. In this article you will learn how to use the Code-First approach for better security in ASP.NET MVC.
- Practical Introduction to Entity Framework: Day 6Aug 25, 2014. In this article you will learn about return temporary tables and a dynamic query in Entity Framework.
- Practical Introduction To Entity Framework: Day 5Aug 18, 2014. This article provides a practical introduction to the Entity Framework.
- Entity Framework: Code First Data AnnotationsAug 13, 2014. Entity Framework code First approach allows us to use our POCO (domain) classes as model and Entity framework is use this classes to querying data, change tracking and other updating function.
- Validation Failed For One or More Entities: MVC/Entity Framework 5.0Aug 13, 2014. In this article you will see how to fix failed validation for one or more entities: MVC/Entity framework 5.0.
- ASP.Net Web API Using Entity Framework 6: Day 1Aug 08, 2014. This article explains how to create an ASP.NET Web API application. We'll learn to add an ADO.NET Entity Data Model and Controller using the Entity Framework in the application.
- Index Attribute With Entity Framework 6.1Aug 07, 2014. In this article you will learn about the Index attribute with Entity Framework 6.1.
- Multiple Diagrams Per Model With Entity Framework and Visual Studio 2013Aug 05, 2014. In this article we learn how to split a model into multiple diagrams, how to specify a different color for an entity and how to change the sequence of the properties in a specific entity.
- How to Connect ADO.NET Entity Framework With MVC in Simple StepsAug 04, 2014. This article shows how to work with MVC and the ADO.NET Entity Framework together.
- Practical Introduction To Entity Framework: Day 4Jul 30, 2014. In this article you will learn how to return multiple result sets or datasets in Entity Framework.
- Using Table Valued Parameters in Entity FrameworkJul 27, 2014. In this article I am explaining the use of Table Valued Parameters (TVPs) using Entity Framework.
- Multi-Tenant Migrations With Entity Framework 6.0 (Code First Model)Jul 23, 2014. This article describes the multiple model migrations per physical database feature of Entity Framework 6.0 (Code First Model).
- Code First Migrations With Entity FrameworkJul 20, 2014. This article will provide answers to the following questions relevant to relationships in Entity Framework: whether or not to create a database, how to add / remove a field from an existing table, how to avoid data loss and how to get a database script that has the changes.
- Delete an Object Without Retrieving it in Entity Framework 6.0Jul 17, 2014. This article shows how to delete an existing entity without retrieving it from the database and gain some performance benefit from it.
- Discard Changes Without Disposing DbContext/ObjectContext in Entity Framework 6Jul 11, 2014. This article helps you to understand how to discard the changes from DbContext or ObjectContext.
- Working With Change Tracking Proxy in Entity Framework 6.0Jul 10, 2014. In this article you will learn how to work with a Change Tracking Proxy in Entity Framework 6.0.
- Relationship in Entity Framework Using Code First Approach With Fluent APIJul 06, 2014. In this article you will learn about relationships in Entity Framework using the Code First Approach with Fluent API.
- Working With Stored Procedures Using Entity Framework: Part 1Jul 04, 2014. This article describes how to work with Stored Procedures using the Entity Framework in the ASP.NET Class Library.
- Practical Introduction To Entity Framework: Day 3Jun 29, 2014. In this article you will see some a practical implementation of Entity Framework.
- Practical Introduction To Entity Framework: Day 2Jun 21, 2014. This article provides the fundamentals of Entity Framework.
- Repository Design Pattern in MVC Architecture With Entity FrameworkJun 19, 2014. In this example we will first implement a sample application using pure MVC architecture and then we will see how to improve our code standards by implementing the repository design pattern.
- Explicitly Triggering Model Validation Using Entity Framework 6.0Jun 13, 2014. This explains the explicitly triggering model validation using Entity Framework 6.0.
- Working With Proxies in Entity FrameworkJun 11, 2014. This article helps you to understand what a proxy in the Entity Framework is and how to turn on and turn off a proxy and how to create a proxy instance explicitly.
- Practical Introduction To Entity Framework: Day 1Jun 09, 2014. It is an ORM (Object Relational Mapper) enable programmers to communicate with relational Database.
- Expose Odata Endpoints Without Entity Framework and Performing CRUDMay 26, 2014. This article explains odata endpoints without Entity Framework and performing CRUD.
- Asynchronous Controller of Web API 2 With Entity Framework 6: Put and Delete MethodMay 23, 2014. As per promise, in this article we will see to update DB using Entity Framework with the help of Put method.
- Asynchronous Controller of Web API 2 With Entity Framework 6: Post MethodMay 22, 2014. This article explains how to do a Post operation to send data from a .NET client to the Web API.
- Asynchronous Controller of Web API 2 With Entity Framework 6: Get() MethodMay 20, 2014. In this article we will understand the Get method to get data from the Web API asynchronously.
- Optimizing Entity Framework Using View-Backed EntitiesMay 20, 2014. This article explains the optimization of entity framework using view-backed entities.
- Lazy and Eager Loading in Entity FrameworkMay 18, 2014. In this article we will see how to implement lazy loading in the Entity Framework.
- Pass Connection String At Run Time to Entity FrameworkMay 17, 2014. In this article we will see how to pass a connection string at run time to the Entity Framework.
- Introducing New Features in Entity Framework 6.1.0May 09, 2014. This article explains the latest version of Entity Framework, Entity Framework 6.1.0 features.
- Stored Procedures in Entity Framework 6 in MVC 5May 08, 2014. This article describes the use of Stored Procedures in an ASP.NET MVC Applications using the Entity Framework Code First Approach in Visual Studio 2013.
- Creating Image Gallery in MVC 5 ApplicationMay 05, 2014. This article explains how to create a MVC 5 application with an image gallery using a fancy box and entity framework.
- Create, Edit, Delete,Details Operation From Fancy Box in MVC5 ApplicationApr 29, 2014. This article will solve the problem of how to create a MVC 5 application with CURD (Create, Edit, Details, Delete) operation using Fancy Box and Entity Framework.
- Working With Asynchronous Programming With Entity FrameworkMar 27, 2014. This article explains how to do asynchronous programming with the Entity Framework in a Console Application. We can also use this in a desktop or web application.
- Introducing EntityDataSource Control Final Release in ASP.NetMar 07, 2014. This article describes the release of Dynamic Data Provider and EntityDataSource with its latest version 6.0.0.
- Loading Related Entities in Entity FrameworkMar 07, 2014. This article explains three methods to load related entities in Entity Framework.
- Work With GridView Using Entity FrameworkFeb 23, 2014. This is a basic GridView (with insert, edit, delete, paging, sorting etc.) tutorial using Entity Framework.
- Creating Entity Key in Entity FrameworkFeb 21, 2014. This article exlains how to create an Entity Key in the Entity Framework.
- Cascading DropDown in MVC4 Using Knockout, Web API With Entity FrameworkFeb 20, 2014. In this article I will explore many things, including dropdown cascading, how to use Entity Framework and how to use a data transfer object with Entity Framework and how to use the ASP.NET Web API and fetch data using the ASP.NET Web API and display using Knockout.
- Getting Started With New Release: Entity Framework 6.1.0 Beta1Feb 14, 2014. This article describes the new Entity Framework 6.1.0 Beta 1 that has been released. You can also get it and learn about its various new features.
- Entity Framework Error: The Relationship Could Not be Changed Because One or More of the Foreign-key Properties is Non-nullableFeb 12, 2014. I am currently working on a MVC and Entity Framework based project in which I encountered a problem with Entity Framework when trying to delete an entity from a related data collection and one or more of the foreign-key properties is non-nullable.
- Getting Started With New Release: AspNet.Identity 2.0.0-beta 1Feb 12, 2014. This article describes the new ASP.NET Identity 2.0.0-Beta1 and Entity Framework 6.1.0-Beta1 released by Microsoft.
- Using Entity Framework to Work With DatabaseFeb 11, 2014. This article describes the database creation with the Entity Framework. You can also learn to apply the Data Annotation attributes in the database schema creation.
- Getting Started With Preview of Dynamic Data and Entity Data For EF 6Jan 31, 2014. This article describes the new update preview of Dynamic Data Provider and Entity Data Source for the Entity Framework 6.
- Adding Profile Data in ASP.Net Identity Using Visual Studio 2013Jan 27, 2014. This article will help you to learn to apply the migration in the Entity Framework based MVC application and you can also add more profile data to the application.
- Shopping Cart Using Entity Framework in ASP.NetJan 24, 2014. This article explains Entity Framework in ASP.NET and shows how to create a shopping cart using it.
- Working With Complex Type in Entity FrameworkJan 16, 2014. This articles describes how to work with the Complex Type in the Entity Framework.
- MVVM and Knockout Using Entity Framework in Web ApplicationJan 03, 2014. This article explains how to use the Model View ViewModel (MVVM) pattern with Knockout using Entity Framework in ASP.Net web applications.
- Unit Testing in Web API2 Using Entity FrameworkDec 30, 2013. This article explains Unit Testing with Entity Framework in Web API 2, including how to modify the Scaffold Controller for passing the context object to the tests.
- Paging, Searching and Sorting in ASP.Net MVC 5Dec 20, 2013. This article explains how to do sorting, searching and paging in a MVC 5 application with Entity Framework 6 in Visual Studio 2013.
- Perform CRUD Functionality in ASP.Net MVC 5Dec 19, 2013. In this article we'll learn how to do Create, Read, Update and Delete (CRUD) operations with the Entity Framework Data Model in the ASP.NET Web Application based on the MVC Project Template in Visual Studio 2013.
- Caching in MVC Application With Entity Framework Using Query NotificationDec 13, 2013. This article explains caching in a MVC web application with Entity Framework using Query Notification (SqlDependency).
- Complete CRUD Operations in MVC 4 Using Entity Framework 5 Without Writing CodeDec 08, 2013. This article describes how to perform basic CRUD operations in an MVC4 application using Entity Framework 5 without writing a single line of code.
- Logging Database Operations in Entity Framework 6 (EF6 New Feature)Dec 07, 2013. In this article you will learn the new feature "Logging Database Operations" introduced with Entity Framework 6. This features works for models created with Code First or the EF Designer.
- Using Entity Framework in Web API Part-3Dec 05, 2013. This article explains how to add a view for adding the HTML code.
- Using Entity Framework in Web API Part-2Dec 03, 2013. In this article we will discuss how to add the Web API Controller with Entity Framework.
- Using Entity Framework in Web API Part-1Nov 29, 2013. This article explains the Entity Framework in the Web API.
- Using ADO .NET Entity Framework 5.0Nov 14, 2013. This article will introduce you to the ADO.NET Entity Framework 5.0 data model, also known as the Entity Data Model (EDM).
- Some Useful Tips in Changing Code First Model After ScaffoldingNov 09, 2013. In this article I am describing the various ways to do the changes while scaffolding the Entity Framework Code First Models.
- Database First Approach in MVC 5: Part 2Oct 09, 2013. This article shows development of an ASP.NET Web application in a MVC 5 project template that connects with an existing database and performs CRUD operations.
- Entity Framework 4 and TableValue Type in Stored Procedure (Fix)Oct 04, 2013. Entity Framework 5 has been released with .Net framework 4.5 and it now supports user-defined table valued types as a parameter in a Stored Procedure.
- Introducing New Features of Visual Studio 2013 RC: Part 2Sep 16, 2013. In this article I am introducing the latest features of latest release named Visual Studio 2013 RC.
- What is Eager Loading and What is Lazy Loading and What is N+1 Problem in Entity Framework?Sep 10, 2013. In this article you will learn what Eager Loading and Lazy Loading are and how they work in an application and how you can take advantage of them.
- Introduction to Code First Migration and Adding New Property in Application in MVC5Aug 29, 2013. This article introduces Code First Migration in Entity Framework and adding a new field in your application in MVC5 with Visual Studio 2013 Preview.
- Generic Repository Pattern in MVC3 Application With Entity Framework: Part 6Aug 20, 2013. This article will focus on the Unit Of Work Pattern and Repository Pattern, and shows how to perform CRUD operations in an MVC application when there is the possibility of creating more than one repository class.
- Introduction of Beta 1 Version of Entity Framework 6Aug 19, 2013. In this article I am describing the latest version of Entity Framework which is the Beta 1 version of EF6 and the new features of this version.
- CRUD Operations Using Entity Framework 5.0 Code First Approach in MVCAug 18, 2013. In this article you will learn how to perform CRUD operations using the Entity Framework 5.0 Code First approach in MVC.
- Implement Joins in EntityFramewok Using DB Context and LINQAug 12, 2013. In this article I am sharing how to use joins in Entity Framework with a DB context and a LINQ query.
- Working With MVC4 ApplicationAug 02, 2013. In this article we will create a simple "GuestBook" application using MVC4 and Entity Framework.
- Repository Pattern in MVC3 Application With Entity Framework: Part 5Aug 01, 2013. In this article I’ll focus on how to implement a Repository Pattern in the same MVC application, therefore moving ahead a step towards architectural approach of developing an enterprise application.
- CRUD using the Repository Pattern in MVCJul 29, 2013. This article introduces the repository pattern in an MVC application.
- C# Cornr Jabalpur Chapter Meet, Official Recap 13 July 2013Jul 20, 2013. In this article, I am sharing a recap of the event and the slides of the presenters for you who didn't get a chance to attend.
- Transaction Support in Entity Framework 6Jul 16, 2013. With the release of EF6 we added two new APIs to DbContext.Database which make working with transactions easier: UseTransaction() and BeginTransaction().
- Introduction to ASP.Net 4.5.1Jul 15, 2013. This article introduces the new version of ASP.NET, version 4.5.1, that was released with Visual Studio 2013 Preview.
- Connecting the MVC Application Using EntityFramework DB-First Approach: Part 3Jul 13, 2013. The article is an attempt to overcome the confusion related to how to use EntityFramework with MVC application in a very simple way.
- Code First Insert Update and Delete Stored Procedure in Entity Framework 6 PreJul 08, 2013. This article will demonstrates the new features that will be available in Entity Framework 6 Pre-beta version.
- Introduction of Web Development Features in Visual Studio 2013Jul 08, 2013. In this article I am introducing the new Web Development Features in Visual Studio 2013.
- Creating Primary Key And Foreign Key Association in SQL Server Using Visual C# 2010 and Entity FrameworkJun 25, 2013. In this article I am showing how to create primary key and foreign key association in Employee and Department table.
- Generic Repository Pattern With Entity Framework & LINQJun 24, 2013. This article describe the benefits and usage of Entity Framework, LINQ and repository patterns usijng diagrams, This also cover the sample code covering the Entity Framework with stored procedures, repository patterns, and LINQ.
- New Features of Entity Framework 6 BetaJun 20, 2013. This article is all about the key features introduced in the Beta release of Entity Framework 6.
- Entity Framework Approach To Connect To MS SQL Server 2008 Using Visual C#Jun 19, 2013. This article defines an Entity Framework approach to connect to Microsoft SQL Server 2008 using Visual C#.
- Creating ASP.Net Web API With EF DatabaseJun 10, 2013. In this article we will see how to create the ASP. NET Web API With an Entity Framework (EF) Database.
Blog about MVC pattern and nice articles on asp.net MVC, spring MVC, code igniter etc. Mainly would like to to Post/Repost lot of optimization and good coding practices articles and tutorials. To make it simple, It is site for learning how to design Technical stack with latest technologies.
For any training meterial on any of the posts or Video Trainig contcat 0426622462 or dasaradhkk@gmail.com
Monday, 10 November 2014
Entity Framework (EF) Documentation
Subscribe to:
Post Comments (Atom)
Angular Tutorial (Update to Angular 7)
As Angular 7 has just been released a few days ago. This tutorial is updated to show you how to create an Angular 7 project and the new fe...
-
Many web sites feature the facility for the user to create a user account. They can then log into the web site and enjoy a persona...
-
Same Markup: Writing Cross-Browser Code Thursday, April 15, 2010 3:19 AM 68 I recently presented a session at MIX10 cover...
-
If you are used to developing websites using .NET but are now using Angular 4 without any .NET, you may be wondering “how can I get my web...
No comments:
Post a Comment