Resources No resource found - ASP.NET Core - CRUD With React.js And Entity Framework CoreApr 24, 2018. CRUD Operations in ASP.NET Core application using React.js, Web API and Entity Framework Core DB first approach with the help of VS 2017.
- ASP.NET Web API Using MVC, Entity Framework And jQuery For Retrieve Data - Part TwoApr 20, 2018. The most common use case for using Web API is for building RESTful services.
- ASP.NET Web API Using MVC And Entity Framework - Part OneApr 18, 2018. Web API concepts in different fields and Its implementation using Asp.Net MVC and Entity Framework . Web API Controller connects with Sql Server by Entity Framework. Web API Route can be used in different types of clients Like IOTs.
- ASP.NET Core - CRUD Using Blazor And Entity Framework CoreApr 09, 2018. Microsoft has recently announced the release of a new .NET web framework – Blazor. In this article we are going to create a web application using Blazor with the help of Entity Framework Core. We will be creating a sample Employee Record Management system and perform CRUD operations on it.
- Code First Migration - ASP.NET MVC 5 With Entity Framework And MySQLMar 26, 2018. In this article, we are going to explain Code First Migration in ASP.NET MVC 5 with EntityFrameWork & MySql.
- Setting Up Entity Framework Core Database With FactoryMar 14, 2018. In this write-up, I will explain how to easily and quickly set up your database using Entity Framework Core in a .NETCore project using the factory pattern to connect your entities to your database.
- ASP.NET Core - CRUD Using Angular 5 And Entity Framework CoreMar 13, 2018. CRUD Operations in ASP.NET Core application using Angular 5 , Web API and Entity Framework Core DB first approach with the help of VS 2017.
- Shadow Properties In Entity Framework CoreMar 10, 2018. Entity framework core added many new features that are already present in older entity framework versions. One of the features of Entity framework core is "Shadow Properties". The feature "Shadow Properties" was originally introduced in EF 7.
- Getting Started With SharePoint Framework (SPFX)Mar 08, 2018. In this article, I have explained how to set up SharePoint framework development environment, and how to build a SharePoint framework web part from scratch.
- Table Splitting In Entity Framework Core 2.0Mar 06, 2018. One of the major benefits of the Entity Framework is that our entity model does not need to match our database model. With Table Splitting, it is possible to map multiple entities to the single database table.
- Entity Framework Core Feature - Global Query FiltersMar 02, 2018. This feature is also refer as Model-level query filters. It allows to specify filter in the model level that are automatically applied to all queries that executed on the context on the specified type. It means that entity framework automatically adds the filter in where clause before executing the LINQ queries. Usually Global query filters are applied in OnModelCreating method of context. This filters are also automatically applied to LINQ queries involving the entity types referenced indirectly like included as navigation property.
- No Tracking With Entity Framework CoreMar 02, 2018. DbContext in Entity Framework is responsible for tracking the changes made on the entity or object, so the correct update is done to the database when the SaveChange() method of context is called. When we retrieve entities using an object query, the Entity Framework puts these entities in a cache and tracks whatever changes are made on these entities until the savechanges method is called. Entity Framework tracks the query results that return entity types.
- New Features Of Entity Framework Core 2.0Feb 28, 2018. Entity Framework Core is a lightweight and extensible version of Entity Framework. It is based on an ORM (Object-Relational Mapper) which enables us to work with databases using .NET objects. This article explains about the new feature of EF Core 2.0.
- Deploy SharePoint Framework Client-Side Web Part To Office 365 CDNFeb 22, 2018. SharePoint Framework encourages us to host customizations outside of SharePoint. Consisting fully of client-side assets, these customizations can be hosted on public CDNs or other locations optimized for delivery of static resources. But hosting resources externally isn't without downsides. Assuming you're not hosting your organization's customizations publicly, it adds yet another location for you to monitor and maintain. So, to deploy SharePoint Framework web-parts in Private CDNs of the Office 365 CDN there's a new edition of SharePoint Online. In this article, we will discuss the SPFx web-part deployment procedure in Office 356 private CDNs and discuss other possibilities.
- Amazing Guide To SharePoint Framework Development With React - Part TwoFeb 09, 2018. In my previous article, we walked through how to create a SharePoint Framework web part with React to display the mockup contents step by step. We will continue the same source for displaying the SharePoint data in the web part.
- Introduction To LINQ With Entity Framework In Visual StudioFeb 08, 2018. LINQ queries are similar to SQL query created for developers to maintain standardized coding approach. It deals with the data objects therefore it is similar to OOPs.
- Amazing Guide To SharePoint Framework Development With ReactFeb 07, 2018. What would you think when you see the ongoing modern updates in SharePoint Online. Super cool!! Isn’t it. Modern UI, Modern Pages, Modern web parts and a lot of modern APIs are revolving around SharePoint nowadays and that brings a lot of features to SharePoint world. The features, which we missed in past days are coming in the form new way.
- How Can You Integrate A JSON Framework With iOSFeb 01, 2018. JavaScript Object Notation, or JSON in short, is commonly used for representing structural data and data interchange in client-server applications, serving as an alternative to XML. It has grown in popularity as it is simple to use and human-readable. It is technically a part of the JavaScript language and provides a way to serialize JavaScript objects. It is supported in a wide variety of programming languages. A lot of the services used every day have JSON-based APIs.
- Performing CRUD Operations On Azure SQL Database Using SharePoint Framework Web Part And ASP.NET Web API - Part TwoJan 30, 2018. Normally, you would want to put your css classes in the .scss file (i.e. YourWebpartName.scss) and import it into the YourWebpartName.ts file (this is actually done automatically during project creation). But I decided to put it in a SharePoint list because my css selectors are grouped and I could not reference them using "styles.selector".
- Performing CRUD Operations On Azure SQL Database Using SharePoint Framework Web Part And ASP.NET Web API - Part OneJan 24, 2018. Supposing there is an existing data in an SQL database, be it Azure or an on-premise database server, you are required to make the data available for CRUD operations in SharePoint for your users. This is a scenario where this article will be of help to you. In this article, I will show you how you can perform CRUD operations on Azure SQL database from a SharePoint web part. Note that the steps are same for on-premise SQL database except for the steps required in setting up Azure database.
- Setup Bot Framework Development Environment Using .Net (C#) - Part TwoJan 23, 2018. In previous article, I have explained how to build FAQ based bot application using QnA maker for questions and answers. In this article, we will discuss about how set up Bot Framework development environment and we are going to consume QnA maker service.
- FormFlow In Microsoft Bot Framework - Part TwoJan 11, 2018. In this part, we will see some of the advanced stuff that we can use while using FormFlow in real time application while dealing with real business scenarios.
- FormFlow In Microsoft Bot Framework - Part OneJan 04, 2018. In this series we are going to explore a few basic and advanced features of formflow in Microsoft bot framework. In Part 1 we will see what is formflow, and how to implement a basic formflow.
- Entity Framework Core Migrations Using ASP.NET COREDec 27, 2017. Let us learn about Entity Framework Core migrations using ASP.NET CORE.
- Building Entity Framework Generic Repository 2 ConnectedDec 18, 2017. A few weeks ago, we looked a first article about Disconnected Repository. In this article let’s complete it with another piece off the puzzle, the connected Generic Repository.
- Get Started With Bot Framework And Cortana SkillsDec 14, 2017. Get started with Bot Framework and Cortana skills
- Get Up And Run Robot Framework In 10 MinutesDec 07, 2017. Robot framework is an extensive and widely-used test automation framework which (along with RIDE) gives you an easy to use and easy to navigate interface and neat style IDE to its users. It has huge support for a variety of external and internal libraries for keywords support, using which the user can develop new high-level keywords using the existing one.
- Building Entity Framework Disconnected Generic RepositoryNov 29, 2017. The repository pattern separates and retrieves data model mapping logic from the business logic. We will create a repository class for each entity class in our application. All these classes usually have a main group of equals methods.
- MVC 5 Demo Project With Entity Framework (DB First)Nov 23, 2017. MVC project has been set up. Now, make a new C# class library project which will act as a DAL layer and Entity Framework will be handled through this project.
- What Is New In .NET Framework 4.7.1Nov 20, 2017. Learn about the key features available in .NET Framework 4.7.1.
- Get Your Hands On Entity Framework Code First Workflow With New Database And Existing DatabaseNov 10, 2017. In this article we are going to learn how to create code first workflow with new database and existing database.
- Implement ASP.NET WEB API CRUD Logic Using Entity Framework Without Writing Code And Test It With PostmanNov 03, 2017. This article will demonstrate how to implement ASP.NET WEB API CRUD logic using Entity framework without writing code and how to test it with Postman
- Populating A ListView With Data Using Kendo Listview And Entity Framework In ASP.NET MVC 5Oct 31, 2017. Here, I am going to demonstrate how to load the data from a database to Kendo listview in ASP.Net MVC5.
- Logging Framework In ASP.NET Core 2.0Oct 29, 2017. Logging is a very critical and essential part of any software. It helps us in the investigation of the essence of problems. Before ASP.NET Core, we had to use third party libraries for logging our application.
- What's New In Microsoft .NET Framework 4.7.1Oct 20, 2017. In this article I will be discussing the new features introduced as part of the .NET Framework 4.7.1 release
- Getting Started With Entity Framework Core 2.0 ASP.NET Core 2.0Oct 13, 2017. This article shows how to create Entity Framework Core 2.0 MVC Web application using Visual Studio 2017 Asp.Net Core and how to create CRUD operations.
- Getting Started With Entity Framework Core - Database-First DevelopmentOct 12, 2017. This article is the first part of the series on Getting Started with Entity Framework Core. In this post, we will build an ASP.NET Core MVC application that performs basic data access using Entity Framework Core. We will explore the database-first approach and see how models are created from an existing database. We will also take a look at how classes become the link between the database and ASP.NET Core MVC Controller.
- Getting Started With SharePoint Framework For SharePoint 2016 On-PremisesOct 12, 2017. Once you have installed and upgraded the September 2017 Public Update for SharePoint 2016, you will be able to upload and deploy SharePoint Framework packages that contain web parts via the SharePoint App Catalog just as you would with SharePoint Add-ins.
- .NET Entity Framework Core Generic Async Operations With Unit Of Work Generic RepositoryOct 05, 2017. The advantage of generic repository is that you can inherit from it, pass an entity type, and you will get CRUD operations. It will save you a lot of coding time when your domain objects are likely to grow over 50+. Another advantage is change history functionality; you can inherit your entities from the change history interface.
- Develop Chatbot On NodeJS Platform Using Microsoft Bot Framework (Part Three) - Manage Conversation Using Multiple DialogsOct 03, 2017. In article Develop ChatBot On NodeJS Platform Using Microsoft Bot Framework (Part Two) - Manage Conversation Using Root Dialog, we have discussed how to handle conversation using root dialog in chatbot developed using Microsoft Bot Framework NodeJs SDK. In this article, we are going to handle the conversation flow with multiple dialogs instead of root dialog. We are also going to use trigger for dialogs.
- What's New In Entity Framework Core 2.0Sep 27, 2017. Entity Framework Core is a lightweight, extensible, and cross-platform version of the popular Entity Framework data access technology. Entity Framework 2.0 is the latest release of EF.
- Understanding Gulp Tasks In SharePoint Framework SolutionsSep 24, 2017. Let us look deeply into the Gulp tasks we use in SharePoint framework solutions. Gulp helps in automating the manual tasks done in a solution. Say for example, when you create SharePoint framework solution, you try to test the web parts using the gulp tasks. The tasks are defined using gulpfile.js present in the SPFx solution.
- Stored Procedure With Input And Output Parameter Using Entity Framework In ASP.NET MVCSep 23, 2017. In this article, we are going to learn how to get list and output value from a stored procedure using Entity Framework in ASP.NET MVC.
- Store Photo In Backend Using Entity Framework In MVC Razor And BootstrapSep 21, 2017. Here i will show you image details will be shown along with user name. This one a sample exmaple of
student management system In mvc and bootstrap.
- Introduction To SharePoint Framework (SPFx) - Zero To Hero Series - Part ThreeSep 21, 2017. This is the third article in SharePoint Framework (SPFx) – Zero to Hero Series. I will recommend to read the first two articles (link given below), before going through this article.
- Scrum Framework - 5 Events in Scrum FrameworkSep 21, 2017. In this article, we will learn 5 Events in Scrum Framework
- Introduction to SharePoint Framework (SPFx) – Zero to Hero Series – Part TwoSep 20, 2017. This is the second article in SharePoint Framework (SPFx) – Zero to Hero Series. I will recommend to read the first article (link given below), before going through this article.
- CRUD Operations In MVC Using Entity Framework With AJAX Call, jQuery, And All ValidationsSep 19, 2017. This article describes how to perform basic CRUD operations in an Asp.Net MVC application using Entity Framework with Ajax call and j query.
with using Datatable Grid ,Toaster messagebox and also Bootstrap css.
- Scrum Framework - Three ArtifactsSep 18, 2017. In this article we will discuss Three Artifacts in the Scrum Framework.
- Scrum Framework - 3 Roles In Agile ScrumSep 17, 2017. In this first part of Scrum framework we will learn about the three Roles in Agile Scrum.
- Introduction To SharePoint Framework (SPFx) - Zero To Hero Series - Part OneSep 17, 2017. SharePoint Framework is also abbreviated as SPFx. SharePoint Framework offers modern technologies, Node-based development, TypeScript, etc. that are applied to SharePoint and Office 365 development.
- ASP.NET MVC CRUD Operation Using Entity Framework Without Writing Single CodeSep 11, 2017. Here, you will learn to do CRUD (Create,Read,Update and Delete) operations in MVC using Entity Framework without writing a single line of code.
- CRUD Operation Using Entity Framework In Windows Form ApplicationSep 06, 2017. In this article, we are going to learn how to perform CRUD operations using Entity Framework in the Windows Forms Application.
- Develop ChatBot On NodeJS platform Using Microsoft Bot Framework (Part One) - Quick Start For BeginnersSep 02, 2017. Microsoft bot framework includes Bot Builder tools which will help bot development. Bot Builder is an open-source SDK. It supports .NET, Node.js, and REST. The Bot Builder SDK for Node.js uses Express & Restify frameworks. In this article, we are going to develop a chatbot on NodeJs platform.
- Develop ChatBot On NodeJS Platform Using Microsoft Bot Framework (Part Two) - Manage Conversation Using Root DialogSep 02, 2017. In article Develop ChatBot on NodeJs platform Using Microsoft Bot Framework (Part One) - Quick start for beginners, we have discussed about where and how to start with development of chatbot on NodeJs platform using Microsoft Bot Framework. In this article we are going to see usage of Dialogs which will help us to manage conversation flow.
- SharePoint Framework (SPFx) Development Machine SetupAug 31, 2017. SharePoint Framework is the way to go for the SharePoint developers. Having said that it’s of utmost importance that SharePoint developers like me start preparing ourselves for this next gen development model for SharePoint.
- Dynamic Menu Using Entity Framework And AngularJS In ASP.NET MVC Aug 23, 2017. The logic behind this is all main menus should have parentid = 0 and whatever ID column value of Main menu that ID value should be mentioned in parentid column of sub menu. Then the sub menu will appear for corresponding Main Menu.
- Introduction To Microsoft's Coco Framework For Blockchain Applications - Part TwoAug 17, 2017. In this article, we are going to discuss about blockchain network management in Coco framework.
- Introduction To Microsoft's Coco Framework For Blockchain Applications - Part OneAug 13, 2017. Nowadays, we all are going through the boom of Blockchain technology. There is lot of information coming in our way, regarding implementation and adoption of this technology. So far we are aware of blockchain technology, its implementation for public networks like bitcoin, and platforms for creating private blockchain network like azure ethereum consortium blockchain.
- Entity Framework CRUD Operation Performed With SQL Stored Procedure Using ADO.NET Entity Data ModelJul 31, 2017. You can see my pervious article for Entity framework with Ado.Net data Model connection and how to create a new entity framework project and sql database connection maintained with created entity framework project. Also you can see how to create a class in entity framework based on data table.
- Introduce Entity Framework With ADO.NET Entity Data ModelJul 28, 2017. In this article, we will learn the Entity Framework with Data Model.
- Entity Framework Core Triggers In Action (Unofficial Package)Jul 24, 2017. This article shows you how to work with database triggers in Entity Framework Core using a third party library.
- SharePoint Framework Extensions OverviewJul 20, 2017. SharePoint Framework (SPFx) was launched in February 2017 which changed the perspectives of SharePoint developers. Developers then started to build and deploy modern client side web parts using SharePoint Framework across their Office 365 tenants. We will also see this available soon in SharePoint OnPremise version of SP2016.
- How To Use Joins, and Group By Clause In Entity Framework With LINQ C#Jul 15, 2017. In this article will be going to learn How to use Joins, and Group By Clause in Entity Framework with Linq C#
- Chat Bot Using Microsoft Bot Framework With LUIS - Part TwoJul 08, 2017. Click on ‘Publish App’ option in left hand side bar menu. It will show following page. Here you can choose Endpoint Key. Select purchased key. If you have not purchased any key then select Bootstrap key, which is for experimental purposes. In ‘Publish Settings’, you can select Endpoint slots as Staging or Production. If you select it as Staging, it will be available over http but you can’t access it though chat bot app. For our development select it as Production.
- Quick start - Development Of Chat Bot Using Microsoft Bot Framework - For BeginnersJul 08, 2017. In solution explorer, you will see WebApiConfig.cs file, Controllers and Dialogs folders. 'MessageController' is inherited from 'System.Web.Http.ApiController'. Bot application is nothing but webapis which will be called from chat window to get response.
- Installation And Un-Installation Of Entity Framework Core In ASP.NET MVC CoreJul 06, 2017. This article explains how to install and uninstall entity framework in ASP.NET MVC core. We can install and uninstall entity framework in ASP.NET MVC core in two different ways. The following steps explain how to install and uninstall entity framework.
- Chat Bot Using Microsoft Bot Framework With LUIS - Part OneJul 03, 2017. LUIS: Language Understanding Intelligent Service. We can teach this service to understand intention and extract the entities from user query/activity. Client app (e.g. chat bot) can consume this output using HTTP endpoint of LUIS application.
- Create A Bot With Microsoft Bot Framework Using Node.jsJul 03, 2017. In this article, you will learn how to create a Bot using Bot Framework with newly launched Custom Vision service.
- FAQs Answering Bot Using Bot Framework And QnA Maker serviceJun 30, 2017. In a previous article, I have explained how to educate QnA maker for questions and answers. In this article we will discuss about how to consume QnA maker service in Bot applications created using Microsoft Bot Framework.
- Create SharePoint Framework Web Part To Retrieve SharePoint List Items Using REACT And REST APIMay 31, 2017. Create SharePoint Framework Web Part to retrieve SharePoint List Items using REACT and REST API.
- How The Microsoft Bot Framework Changed Where My Friends And I Eat - Part OneMay 27, 2017. How The Microsoft Bot Framework Changed Where My Friends And I Eat.
- Getting Started With SharePoint Framework Development Using PnP JSMay 19, 2017. Getting Started with SharePoint Framework development using PnP JS.
- Upgrade SharePoint Framework Solution Using Upgrade ActionsMay 17, 2017. Upgrade SharePoint Framework Solution using Upgrade Actions.
- Provision Custom Sharepoint List Using SharePoint Framework Development ModelMay 15, 2017. Provision Custom SharePoint List using SharePoint Framework development model
- ASP.NET MVC - AngularJS, Web API And Entity Framework To Build SPAMay 09, 2017. In this article, you will learn ASP.NET MVC - AngularJS, Web API and an Entity Framework to build SPA.
- SharePoint Framework - How To Prepare Environment For Development With SharePoint FrameworkApr 28, 2017. In this article, we will look for the steps required to get a developer machine ready for starting with SharePoint Development, using SharePoint Framework.
- Entity Framework 6.0.0 Using Stored Procedure In ASP.NET MVCApr 28, 2017. Entity Framework 6.0.0 Using Stored Procedure In ASP.NET MVC.
- Implement Business Connectivity Services Using oData, Entity Framework And SharePoint Hosted Add-inApr 21, 2017. Implement Business Connectivity Services Using oData, Entity Framework And SharePoint Hosted Add-in.
- SPA Using Angular 2, ASP.NET Core 1.1 And Entity Framework Core - Part TwoApr 18, 2017. SPA Using Angular 2, ASP.NET Core 1.1 And Entity Framework Core.
- Retrieve User Details Using SPServices In SharePoint Framework Development ModelApr 09, 2017. This article helps to retrieve user details, using SPServices In SharePoint Framework Development Model.
- Entity Framework Code First Approach With Database MigrationApr 09, 2017. In this article, you will understand about an Entity Framework Code First Approach with database migration.
- SPA Using Angular 2, ASP.NET Core 1.1 And Entity Framework Core - Part OneApr 04, 2017. This article emphasizes SPA, using Angular 2, ASP.NET Core 1.1 and Entity Framework Core.
- Working With Entity Framework Using Database First ApproachApr 04, 2017. This article gives you an overview of working With an Entity Framework, using Database First approach.
- .NET MVC5 - Entity Framework Simple Code First Database ApproachApr 03, 2017. This article is about Entity Framework Code First approach
- Implement AutoComplete Control Using Kendo UI With Entity Framework And Web-APIMar 24, 2017. This article explains how to implement the autocomplete control in Kendo Grid, using Entity Framework ASP.NET Web API.
- Retrieve SharePoint List Items Using SharePoint Framework Development ModelMar 21, 2017. In this article, you will understand how to retrieve SharePoint List Items, using SharePoint Framework Development Model.
- .NET Framework At A GlanceMar 19, 2017. .NET Framework At A Glance.
- Getting Started With ASP.NET Core And Entity Framework CoreMar 17, 2017. Getting Started With ASP.NET Core And Entity Framework Core.
- SharePoint Framework - Setting Up Development EnvironmentMar 09, 2017. In this article you will learn about SharePoint Framework - Setting Up Development Environment.
- Developing SharePoint Framework Web Parts Using PnP JavaScript ModulesFeb 17, 2017. In this article, you will learn how to work with SharePoint list operations on SharePoint framework Web parts, using PnP JavaScript libraries.
- CRUD Functionality In AngularJS And ASP.NET MVC 5 With Entity Framework Code First ApproachFeb 17, 2017. In this article you will learn about CRUD Functionality in AngularJS and ASP.NET MVC 5 with Entity Framework Code First Approach.
- Accessing SQL From Entity Framework Core Queries In ASP.NET CoreFeb 03, 2017. In this article, you will learn how to access SQL from Entity Framework Core Queries in ASP.NET Core.
- Developing SharePoint Framework Web Parts Using ReactJS - Part TwoJan 20, 2017. In this article, you will learn how to retrieve SharePoint list items and render those on SPFx web part using ReactJS.
- Developing SharePoint Framework Web Parts Using ReactJS - Part OneJan 18, 2017. In this article, you will learn how to develop SharePoint framework webparts using ReactJS.
- Entity Framework Database First With ASP.NET WebFormJan 12, 2017. In this article, you will learn about Entity Framework’s Database First approach.
- Customizing SharePoint Framework Web Part Properties - Part FiveJan 08, 2017. In this article, you will learn how to bind the values dynamically to the dropdown field of the SharePoint framework web part properties pane.
- Customizing SharePoint Framework Web Part Properties - Part FourJan 07, 2017. In this article, you will learn how to add the dropdown fields to SharePoint Framework Web part properties pane.
- Customizing SharePoint Framework Web Part Properties - Part ThreeJan 04, 2017. In this article, you will learn how to add multiple pages to the properties pane of SharePoint Framework web part.
- Customizing SharePoint Framework Web Part Properties - Part TwoDec 30, 2016. In this article, you will learn how to add custom properties to the SharePoint Framework web part. Check box properties are considered here.