SJSumaya J.intech-chunks.hashnode.dev·Feb 2, 2025 · 2 min readNormalization vs. Denormalization in DatabasesNormalization Normalization is the process of organizing data into multiple related tables to reduce redundancy and improve consistency. When Normalization is Good: Minimizing Data Redundancy – Prevents duplicate data storage. Ensuring Data Integri...00
SJSumaya J.intech-chunks.hashnode.dev·Feb 2, 2025 · 3 min readTables in Dynamics 365 FO and Their Equivalents in SQL DatabaseComponents of Tables in D365 FO In a regular SQL database, the components of a table in Dynamics 365 Finance & Operations (D365 FO) have similar counterparts, though some are more advanced due to the application framework. Here's a comparison: 1. Fie...00
SJSumaya J.intech-chunks.hashnode.dev·Dec 29, 2024 · 2 min readWhy Login is Post not Get?login is typically a POST request, even though it may seem like it could be a GET request. Here's why: 1. Sending Sensitive Data: When you log in, you usually send sensitive information such as a username and password. In HTTP, POST requests are des...00
SJSumaya J.intech-chunks.hashnode.dev·Dec 17, 2024 · 2 min readProvider Token vs Injection Token in AngularBased on Angular documentation: Provider token https://v17.angular.io/api/core/ProviderToken Injection token https://angular.dev/api/core/InjectionToken In Angular, Injection Token and Provider Token are related but not exactly the same. Let me expla...00
SJSumaya J.intech-chunks.hashnode.dev·Dec 17, 2024 · 2 min readinject() vs @Inject() in AngularIn Angular, inject() and @Inject() are both used for dependency injection but serve slightly different purposes and are used in different contexts. Here's the breakdown: --- 1. inject() Introduced in Angular 14. A function-based API for injecting dep...00