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...
Thursday, February 6, 2025
Process for updating Edmx on Entity Framework
Posted by Zuhair Ahmed on February 06, 2025 with No comments
Monday, September 9, 2024
Monday, August 19, 2024
Class/Record/Struct
Posted by Zuhair Ahmed on August 19, 2024 with No comments
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
Posted by Zuhair Ahmed on May 17, 2024 with No comments
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• ...