Friday, March 15, 2019

Visual Studio App Center Integrates with PlayFab

Microsoft has announced a preview release of the Visual Studio App Center Integration with PlayFab, bringing App Center diagnostics data into PlayFab.

source https://www.c-sharpcorner.com/news/visual-studio-app-center-integrates-with-playfab

Thursday, March 14, 2019

ASP.NET MVC WebGrid With CRUD Record From Two Tables And Custom Search Functionality Using Entity Framework Database First Method

This simple tutorial explains how to CRUD (Create, Retrieve, Update, and Delete) records from two one-to-many linked tables (category and product) and display in a web grid.

source https://www.c-sharpcorner.com/article/asp-net-mvc-webgrid-with-crud-record-from-two-tables-and-custom-search-functiona/

Consume Web API In ASP.NET MVC With CRUD Actions

We will see how to create a Web API using entity framework and connect with MS SQL Server. We will consume this Web API in an MVC application and see all CRUD actions.

source https://www.c-sharpcorner.com/article/consume-web-api-in-asp-net-mvc-with-crud-actions/

Inheritance In Ruby On Rails

Today, we are going to learn some interesting concepts about inheritance in Ruby on Rails.

source https://www.c-sharpcorner.com/article/inheritance-in-ruby-on-rails/

Tools Available For Windows Automation

This article explains about the tools available for Windows automation and helps you in choosing the right tool for automating your application.

source https://www.c-sharpcorner.com/article/tools-available-for-windows-automation/

Quick Tips For Writing Clean Code - Part Two

This blog aims at writing clean code and avoiding some common mistakes that programmers usually make while writing code.

source https://www.c-sharpcorner.com/Blogs/quick-tips-for-writing-clean-code-part2

Closures In JavaScript Explained Simply

Closure is a computer science term that defines how a function can maintain a record of the environment in which it was called. This means that a function can keep track of the arguments and variables it was initially called with, even when it’s called outside of that scope.

source https://www.c-sharpcorner.com/Blogs/closures-in-javascript-explained-simply