Reactive forms in Angular 2+

Angular 2 offers developers two technologies for building forms: template-driven forms and reactive forms. Both technologies are part of the @angular/forms library and contain the same set of form control classes. At the same time, they offer different programming styles and techniques and refer to different modules: FormsModule and ReactiveFormsModule, respectively.

Continue reading Reactive forms in Angular 2+

SELECT in SQL

Select – performs a selection (extraction of individual rows) and/or a projection (extraction of individual columns) of the data and returns the result set.

Simple option:

Continue reading SELECT in SQL

C#: Data Types

A type is some general scheme of value (data). A variable is a piece of memory that can contain different values (as opposed to a constant, which can only contain one value). The range of possible values for a variable is determined by its type.

Continue reading C#: Data Types