Tutorials C# Programming Tutorial

Fixed & Dynamic Destination Values — Complete Guide

Fixed & Dynamic Destination Values — Complete Guide: free step-by-step lesson with examples, common mistakes, and interview tips — part of C# Programming Tutorial on Toolliyo Academy.

On this page

C# Programming Tutorial · Lesson 186 of 240

Fixed & Dynamic Destination Values

Beginner ✓Intermediate ✓Advanced ✓Professional

Professional · 4 — Architecture & jobs · ~28 min read · Module 14: AutoMapper & Advanced Features

1. Introduction

Professional lesson: Fixed & Dynamic Destination Values. You will see how large .NET systems are structured. Build understanding one concept at a time — do not rush the architecture modules. Sometimes the destination property does not come directly from a source field. AutoMapper lets you set a fixed (constant) value — like a default currency code — or compute a dynamic value from the source object, HTTP context, or injected services. API DTOs often need fields the database entity does not have: formatted labels, tenant names, audit timestamps, or flags like IsExported. Fixed and dynamic mapping avoids manual assignment in every controller action.

For values from DI (ICurrentUserService, IHttpContextAccessor), register custom IValueResolver or use AfterMap. Avoid capturing heavy services inside MapFrom lambdas in hot loops — resolvers are clearer and testable.

2. Real-world story

Seller order DTOs need a fixed marketplace code (AMZ-IN), a dynamic status label built from flags, and a computed commission — fields that do not exist on the raw Order entity. AutoMapper ForMember handles all three without cluttering the controller.

3. Problem without this concept

If you ignore Fixed & Dynamic Destination Values, this is what teams struggle with:

  • Duplicate logic and unclear structure
  • Harder onboarding for new developers
  • More bugs found only in production

4. Definition

Sometimes the destination property does not come directly from a source field. AutoMapper lets you set a fixed (constant) value — like a default currency code — or compute a dynamic value from the source object, HTTP context, or injected services.

5. Why do we need it?

API DTOs often need fields the database entity does not have: formatted labels, tenant names, audit timestamps, or flags like IsExported. Fixed and dynamic mapping avoids manual assignment in every controller action. When API DTOs differ from EF Core entities and manual mapping gets tedious.

6. Where is it used?

  • API DTO mapping
  • Report view models
  • Integration adapters
  • Map EF entities to DTOs so API responses do not leak database shape.
  • Profile mapping in hot paths — manual mapping is sometimes faster.

7. How it works

  • ForMember targets one destination property.
  • MapFrom accepts a lambda: use s => when reading the source, _ => when the value is fixed or comes from elsewhere.
  • Constants like "INR" are fixed; PriceLabel and MappedAtUtc are dynamic because they change per object or per mapping call.

8. Syntax

Core syntax pattern for Fixed & Dynamic Destination Values:

public class Product
{
    public int Id { get; set; }
    public string Name { get; set; } = "";
    public decimal Price { get; set; }
}
public class ProductDto
{
SyntaxMeaning
// Install: dotnet add package AutoMapper.Extensions.Microsoft.DependencyInjectionComment — notes for humans; compiler ignores it.
public class ProductDefines a type — blueprint for objects or contracts.
{Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
public int Id { get; set; }Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
public string Name { get; set; } = "";Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
public decimal Price { get; set; }Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.

9. Beginner example

Copy into a console project (dotnet new consoledotnet run).

// Install: dotnet add package AutoMapper.Extensions.Microsoft.DependencyInjection

public class Product
{
    public int Id { get; set; }
    public string Name { get; set; } = "";
    public decimal Price { get; set; }
}

public class ProductDto
{
    public int Id { get; set; }
    public string Name { get; set; } = "";
    public decimal PriceInr { get; set; }
    public string Currency { get; set; } = "";
    public string PriceLabel { get; set; } = "";
    public DateTime MappedAtUtc { get; set; }
}

public class ProductProfile : Profile
{
    public ProductProfile()
    {
        CreateMap<Product, ProductDto>()
            // Fixed value — same for every mapped row
            .ForMember(d => d.Currency, opt => opt.MapFrom(_ => "INR"))
            // Dynamic value — computed from source
            .ForMember(d => d.PriceInr, opt => opt.MapFrom(s => s.Price))
            .ForMember(d => d.PriceLabel, opt => opt.MapFrom(s => $"₹{s.Price:N2}"))
            // Dynamic value — not from source at all (runtime clock)
            .ForMember(d => d.MappedAtUtc, opt => opt.MapFrom(_ => DateTime.UtcNow));
    }
}

Line-by-line

CodeWhat it means
// Install: dotnet add package AutoMapper.Extensions.Microsoft.DependencyInjectionComment — notes for humans; compiler ignores it.
public class ProductDefines a type — blueprint for objects or contracts.
{Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
public int Id { get; set; }Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
public string Name { get; set; } = "";Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
public decimal Price { get; set; }Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
}Closes a block started earlier.
public class ProductDtoDefines a type — blueprint for objects or contracts.
{Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
public int Id { get; set; }Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
public string Name { get; set; } = "";Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
public decimal PriceInr { get; set; }Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
public string Currency { get; set; } = "";Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.
public string PriceLabel { get; set; } = "";Part of the Fixed & Dynamic Destination Values example — read with surrounding lines.

10. Real project example

Seller order DTOs need a fixed marketplace code (AMZ-IN), a dynamic status label built from flags, and a computed commission — fields that do not exist on the raw Order entity. AutoMapper ForMember handles all three without cluttering the controller.

Production-style C#

public class Order { public int Id { get; set; } public decimal Amount { get; set; } public bool IsFulfilled { get; set; } }
public class OrderDto { public int Id { get; set; } public string Marketplace { get; set; } = ""; public string StatusLabel { get; set; } = ""; public decimal Commission { get; set; } }

CreateMap<Order, OrderDto>()
    .ForMember(d => d.Marketplace, o => o.MapFrom(_ => "AMZ-IN"))
    .ForMember(d => d.StatusLabel, o => o.MapFrom(s => s.IsFulfilled ? "Delivered" : "Processing"))
    .ForMember(d => d.Commission, o => o.MapFrom(s => s.Amount * 0.12m));

Why teams use this: Product teams add new DTO display fields in one Profile instead of touching every API endpoint.

11. Visual understanding

Input (user, file, API)
        │
        ▼
   Fixed & Dynamic Destination Values logic in C#
        │
        ▼
   Output (console, HTTP response, file)

12. Internal working

  • Roslyn compiler checks syntax and types before your program runs.
  • CLR executes IL and provides services (GC, exceptions, threading).
  • For this lesson, focus on behavior first — runtime details matter more as apps grow.

13. Advantages

  • Readable code that new team members can follow
  • Compiler catches many mistakes before deploy
  • Huge .NET job market in India and worldwide

14. Disadvantages

  • Takes time to learn if you skip fundamentals
  • Overusing advanced features too early adds complexity

15. Best practices

  • Use meaningful names — `transferAmount` not `x`
  • Run `dotnet format` or EditorConfig for consistent style
  • Commit small examples to Git from lesson one

16. Common mistakes

  • Hard-coding MapFrom(_ => DateTime.UtcNow) when you need the database CreatedAt — map from source instead.
  • Forgetting that MapFrom runs per mapping — expensive I/O inside lambdas hurts performance.
  • Using fixed values for fields that should vary by tenant or user — inject a resolver instead.

17. Interview questions

Fixed vs dynamic?

Fixed is the same every time (currency code). Dynamic changes based on source data or runtime context.

Can I map from a service?

Yes — use IValueResolver or pass items through context using IMappingOperationOptions.Items.

Explain Fixed & Dynamic Destination Values to a non-technical teammate in 30 seconds.

Focus on the problem it solves — use a bank transfer or shopping cart analogy, not jargon.

Junior interview: give one code example using Fixed & Dynamic Destination Values.

Use the beginner example from this lesson — be able to write it on a whiteboard without looking.

What goes wrong if you misuse Fixed & Dynamic Destination Values?

Mention one mistake from the Common mistakes section and how you would fix it in a code review.

Do this on your computer

  1. Define source entity and destination DTO with extra properties
  2. In Profile, chain ForMember for each non-trivial destination field
  3. Use MapFrom(_ => constant) for fixed values
  4. Use MapFrom(s => expression) for values derived from source
  5. Call mapper.Map(product) and verify Currency and PriceLabel
  6. Read the real-world section and identify which layer (API, service, domain) uses this topic.
  7. Run dotnet build and dotnet run locally — confirm output.
  8. Change one value and predict the result before saving.

Experiments — try changing this

  • Change a number or string in the example and run again — predict output first.
  • Introduce a deliberate error (remove a semicolon) and read the compiler message.
  • Add one more item to the collection and confirm the loop runs one extra time.
  • Open dotnet docs for Fixed & Dynamic Destination Values and compare one keyword with the lesson example.

18. Summary

  • Fixed values: MapFrom(_ => "constant").
  • Dynamic from source: MapFrom(s => transform(s.Field)).
  • Runtime/di values: IValueResolver or AfterMap.
  • Keeps controllers thin — mapping rules live in Profile.
C# Programming Tutorial
Course syllabus
Module 1: Introduction & Environment Setup How Computer Works — Complete Guide Introduction to Programming Languages — Complete Guide How Computer Programs Work — Complete Guide Types of Applications — Complete Guide Programming Methodologies — Complete Guide Algorithms Pseudocode & Flowcharts — Complete Guide Introduction to .NET — Complete Guide .NET Architecture — Complete Guide Introduction to C# — Complete Guide Installing Visual Studio — Complete Guide First Console Application — Complete Guide .NET Developer Roadmap for 2026 — Complete Guide Coding Standards & Best Practices — Complete Guide
Module 2: C# Basics Structure of C# Program — Complete Guide Console Class — Complete Guide Data Types — Complete Guide Literals — Complete Guide Type Casting — Complete Guide Variables — Complete Guide Operators — Complete Guide Control Flow Statements — Complete Guide If Else — Complete Guide Switch Statements — Complete Guide Loops — Complete Guide While Loop — Complete Guide Do While Loop — Complete Guide For Loop — Complete Guide Break Statement — Complete Guide Continue Statement — Complete Guide Goto Statement — Complete Guide
Module 3: Functions & Strings Functions in C# — Complete Guide User Defined Functions — Complete Guide Call By Value vs Reference — Complete Guide Recursion — Complete Guide User Input & Output — Complete Guide Command Line Arguments — Complete Guide String in C# — Complete Guide Static Keyword & Members — Complete Guide Const ReadOnly & Properties — Complete Guide Override ToString Equals & GetHashCode — Complete Guide
Module 4: Memory & Runtime Stack vs Heap — Complete Guide Boxing & Unboxing — Complete Guide Checked & Unchecked — Complete Guide CLR Internals — Complete Guide CTS Common Type System — Complete Guide CLS Common Language Specification — Complete Guide IL Code & Program Execution — Complete Guide Garbage Collection — Complete Guide Dispose vs Finalize — Complete Guide Managed vs Unmanaged Code — Complete Guide
Module 5: OOP in C# Memory Optimization — Complete Guide OOP Concepts — Complete Guide Classes & Objects — Complete Guide Constructors — Complete Guide Types of Constructors — Complete Guide Static vs Non-Static Constructors — Complete Guide Private Constructors — Complete Guide Destructors — Complete Guide Access Specifiers — Complete Guide Encapsulation — Complete Guide Abstraction — Complete Guide Inheritance — Complete Guide Types of Inheritance — Complete Guide IsA vs HasA — Complete Guide Generalization vs Specialization — Complete Guide Abstract Classes — Complete Guide Interfaces — Complete Guide Multiple Inheritance — Complete Guide Polymorphism — Complete Guide Method Overloading — Complete Guide Operator Overloading — Complete Guide Method Overriding — Complete Guide Method Hiding — Complete Guide Sealed Classes — Complete Guide Partial Classes — Complete Guide Extension Methods — Complete Guide
Module 6: OOP Real-Time Examples Static Classes — Complete Guide Encapsulation Real-Time Examples — Complete Guide Abstraction Real-Time Examples — Complete Guide Inheritance Real-Time Examples — Complete Guide Polymorphism Real-Time Examples — Complete Guide Interface Real-Time Examples — Complete Guide Abstract Class Real-Time Examples — Complete Guide Banking Architecture Example — Complete Guide E-Commerce Architecture Example — Complete Guide ERP Architecture Example — Complete Guide
Module 7: Exception Handling SaaS Platform Example — Complete Guide Exception Handling — Complete Guide Multiple Catch Blocks — Complete Guide Finally Block — Complete Guide Custom Exceptions — Complete Guide Inner Exception — Complete Guide Exception Handling Abuse — Complete Guide Global Exception Handling — Complete Guide Enterprise Logging — Complete Guide Retry Mechanisms — Complete Guide
Module 8: Delegates, Events & Lambda Fault-Tolerant Systems — Complete Guide Delegates — Complete Guide Multicast Delegates — Complete Guide Generic Delegates — Complete Guide Anonymous Methods — Complete Guide Lambda Expressions — Complete Guide Events — Complete Guide Event Handlers — Complete Guide Real-Time Event Examples — Complete Guide Pub-Sub Architecture — Complete Guide
Module 9: Multithreading Event-Driven Systems — Complete Guide Multithreading — Complete Guide Thread Class — Complete Guide Passing Data to Threads — Complete Guide Retrieving Thread Data — Complete Guide Thread Synchronization — Complete Guide Lock — Complete Guide Monitor — Complete Guide Mutex — Complete Guide Semaphore — Complete Guide SemaphoreSlim — Complete Guide Deadlocks — Complete Guide Thread Pool — Complete Guide Foreground vs Background Threads — Complete Guide AutoResetEvent — Complete Guide ManualResetEvent — Complete Guide Inter Thread Communication — Complete Guide Debugging Multithreaded Applications — Complete Guide Producer Consumer Pattern — Complete Guide
Module 10: Collections & Generics High-Performance Concurrent Systems — Complete Guide Arrays — Complete Guide 2D Arrays — Complete Guide Array Performance — Complete Guide ArrayList — Complete Guide Hashtable — Complete Guide Generic Collections — Complete Guide Generics — Complete Guide Generic Constraints — Complete Guide List<T> — Complete Guide Dictionary<TKey TValue> — Complete Guide Stack<T> — Complete Guide Queue<T> — Complete Guide HashSet<T> — Complete Guide Sorted Collections & Comparison Delegate — Complete Guide LinkedList<T> — Complete Guide Concurrent Collections — Complete Guide BlockingCollection — Complete Guide Foreach Loop in C# — Complete Guide
Module 11: File Handling List vs Dictionary — Complete Guide File Handling — Complete Guide FileStream — Complete Guide StreamReader & StreamWriter — Complete Guide File Class — Complete Guide TextReader & TextWriter — Complete Guide BinaryReader & BinaryWriter — Complete Guide StringReader & StringWriter — Complete Guide FileInfo — Complete Guide DirectoryInfo — Complete Guide Excel Import Export — Complete Guide
Module 12: Async Programming Large File Streaming — Complete Guide Introduction to Concurrency — Complete Guide Async & Await — Complete Guide Task — Complete Guide Returning Value from Task — Complete Guide Multiple Tasks — Complete Guide Cancellation Tokens — Complete Guide Retry Pattern — Complete Guide Continuation Tasks — Complete Guide Child Tasks — Complete Guide ValueTask — Complete Guide Async Streams — Complete Guide High-Performance Async Systems — Complete Guide
Module 13: Parallel Programming Enterprise Async Architectures — Complete Guide Task Parallel Library — Complete Guide Parallel For — Complete Guide Parallel Foreach — Complete Guide Parallel Invoke — Complete Guide PLINQ — Complete Guide Degree of Parallelism — Complete Guide Atomic Operations — Complete Guide Interlocked vs Lock — Complete Guide Thread Safety — Complete Guide Race Conditions — Complete Guide
Module 14: AutoMapper & Advanced Features Multithreading vs Async vs Parallel — Complete Guide AutoMapper — Complete Guide Complex Mapping — Complete Guide Reverse Mapping — Complete Guide Conditional Mapping — Complete Guide Ignore Mapping — Complete Guide Fixed & Dynamic Destination Values — Complete Guide Mapping Optimization — Complete Guide DTO Patterns — Complete Guide
Module 15: Advanced C# Features Enterprise API Mapping — Complete Guide Reflection — Complete Guide Dynamic Type — Complete Guide Var Keyword — Complete Guide Dynamic vs Reflection — Complete Guide Volatile Keyword — Complete Guide Ref vs Out — Complete Guide Named Parameters — Complete Guide Optional Parameters — Complete Guide Indexers — Complete Guide Enums — Complete Guide Expression Trees — Complete Guide Source Generators — Complete Guide Span<T> & Memory<T> — Complete Guide Native AOT — Complete Guide
Module 16: C# 7 to C# 14 Features High-Performance C# Features — Complete Guide C# 7 Features — Complete Guide Pattern Matching — Complete Guide Tuples — Complete Guide Local Functions — Complete Guide Async Main — Complete Guide C# 8 Features — Complete Guide Nullable Reference Types — Complete Guide Using Declarations — Complete Guide Async Disposable — Complete Guide C# 9 Features — Complete Guide Records — Complete Guide Init Only Properties — Complete Guide Top-Level Statements — Complete Guide C# 10 Features — Complete Guide Global Using — Complete Guide File Scoped Namespace — Complete Guide C# 11 Features — Complete Guide Required Members — Complete Guide Raw String Literals — Complete Guide Generic Math — Complete Guide C# 12 Features — Complete Guide Primary Constructors — Complete Guide Collection Expressions — Complete Guide C# 13 Features — Complete Guide C# 14 New Features — Complete Guide
Module 17: Enterprise Architecture Future of C# — Complete Guide SOLID Principles — Complete Guide Design Patterns — Complete Guide Clean Architecture — Complete Guide CQRS — Complete Guide Assemblies DLL & EXE — Complete Guide App Domain in .NET — Complete Guide GAC Strong Names & DLL Hell — Complete Guide Microservices — Complete Guide Event-Driven Architecture — Complete Guide Enterprise SaaS Systems — Capstone
Toolliyo Assistant
Ask about tutorials, ebooks, training, pricing, mentor services, and support. I use public site content only—not admin or internal tools.

care@toolliyo.com

Need callback? Share your details