Get me outta here!

Thursday, February 6, 2025

Process for updating Edmx on Entity Framework

Update in DtoUpdate in Main TableAdd Scalar Property in Edmx TableOpen Edmx in xml format and add the propertyThen go to table mappings and map the added fi...

Monday, September 9, 2024

Auth-Session Vs JWT

&nb...

Monday, August 19, 2024

Class/Record/Struct

 FeatureClassRecordStructTypeReference TypeReference Type (since C# 10, can be record struct)Value TypeMemory AllocationTypically allocated on the heap.Typically allocated on the heap.Typically allocated on the stack (or heap if used as part of a class or array)Default ConstructorCan have a parameterless constructor, and can be explicitly defined.Implicit parameterless constructor is not allowed; parameters are required.Parameterless constructor...

Friday, May 17, 2024

Angular Basics

Intro•    package.json•     (list of dependencies)•    package-lock.json•     (details list of that dependencies)•    angular.json•     (map everything here: assets, scripts etc)•    tsconfig.json•     (typescript configuration file)•    polyfills.ts•     (compatibility file) Components•   ...