Test Driven DevelopmentOne of the implementation of eXtreme Programming is test driven development. Test driven development uses unit test to make sure the consistency and quality of the codes. Test driven development is started with the unit test in mind.
//
Creating unit test project
Designing unit test codes
Running the unit test and make it fail
Creating the codes to make it ...
[More]
On this video, we discuss about how to use Entity Framework 6 as an Object Relational Mapping tool. We discuss how to:
Prepare the database
Configure connection string on database
Creating entity model
Consuming the model
You can watch the video here.
//
On this video, we will learn about how the object oriented can be applied in the real worlds. This video will discuss
Application types that support Object oriented programming model
Steps to build an application based on OOP model
Three principles to create application namely: open close principle, modularity, and loosely coupled
CMA techniques : class, method, and attributes
Feature drive...
[More]
On this tutorial video we will learn some of the basic of ORM (Object Relational Mapping) such as:
What is ORM and why you should care
ORM or not ORM
ORM - Entity Framework
Entity Framework 6 vs Entity Framework Core
Building a sample in EF Core in .NET Core application
Enjoy this video,
//
On this video, we will discuss our first step to integrate our software with the database. On this tutorial video you will learn.
how to choose database on a software solution (Flat files vs Database System)
how to design database
how to convert database structure into visual studio project
how to configure our database access library.
You can see the video here
//
On this video, you will learn how to convert your software requirements into a software model / design. This video will tell you what steps that you need to model your software. We will discuss about
Implement OOAD in formal manner by using UML
Implement OOAD in Agile process by using user story
Connecting the model into an architecture
After following this video, you can continue ...
[More]
Problem
You want to develop web application that use data from Microsoft Graph especially data from Office 365. You already follow the tutorial from Microsoft Docs, but you need to find a better and quick integration with Visual Studio 2019 by minimizing the codes development
medianet_width = "600";
medianet_height = "250";
medianet_crid = "858385152";
...
[More]
Building codes is one of the top missions of any software developer in the world. Improving our codes to improve code readability, maintenance, and performance. Today, we will discuss five things that you can do to improve your code's quality by using Visual Studio. Let's get started
//
#1 Code analyzers
This is a good feature to understand your codes better. This technique uses FX c...
[More]