domain-driven design with asp.net mvc

41
Domain-Driven Design with ASP.NET MVC Steve Smith CTO, Falafel Software @ardalis | [email protected]

Upload: steven-smith

Post on 29-Nov-2014

491 views

Category:

Software


3 download

DESCRIPTION

Domain-Driven Design provides a set of principles and patterns that are useful for tackling complex software problems. In this session, we'll review a few DDD concepts and demonstrate how they can be applied within an ASP.NET MVC Solution to keep concerns separated and implementation details loosely coupled from business logic and your domain model. Presented at FalafelCON 2014, San Francisco, September 2014

TRANSCRIPT

Page 1: Domain-Driven Design with ASP.NET MVC

Domain-Driven Designwith ASP.NET MVC

Steve Smith

CTO, Falafel Software

@ardalis | [email protected]

Page 2: Domain-Driven Design with ASP.NET MVC

What is Domain-Driven Design (DDD)?

Page 3: Domain-Driven Design with ASP.NET MVC
Page 4: Domain-Driven Design with ASP.NET MVC

Communication

• Ubiquitous Language

• Domain Expert Interaction

Modeling

• Core Domain

• Generic Subdomains

• Bounded Context

• Context Map

• Shared Kernel

• Anti-Corruption Layer

Implementation

• Model-Driven Design

• Layered Architecture

• Entities

• Value Objects

• Services

• Factories

• Aggregates

• Repositories

• Domain Events

Page 5: Domain-Driven Design with ASP.NET MVC

DDD is BIG

“The more you know, the more you realize you know nothing.”

Socrates

Page 6: Domain-Driven Design with ASP.NET MVC

DDD Fundamentals Course

• Over 4 hours of content (demos using MVC + SignalR)

• http://bit.ly/PS-DDD

Page 7: Domain-Driven Design with ASP.NET MVC

DDD Benefits• Flexibility

• Software models customer’s understanding of problem

• Breaks complexity into manageable pieces

• Well-organized; easily tested

• Business logic lives in one place

Page 8: Domain-Driven Design with ASP.NET MVC

DDD Drawbacks• Time and Effort

• Learning Curve

• Overkill without Complexity• “Anemic” domain model problem

Page 9: Domain-Driven Design with ASP.NET MVC

Communication

“As software developers, we fail in two ways: we build the thing wrong, or we build the wrong thing.”

Me

Page 10: Domain-Driven Design with ASP.NET MVC
Page 11: Domain-Driven Design with ASP.NET MVC

Ubiquitous Language

http://upload.wikimedia.org/wikipedia/commons/2/23/Rosetta_Stone.JPG

Page 12: Domain-Driven Design with ASP.NET MVC

Language

“A project faces serious problems when its language is fractured.”

Eric Evans

Page 13: Domain-Driven Design with ASP.NET MVC

Ubiquitous Language• Ubiquitous – adjective. Present, appearing, or

found everywhere.• Synonyms: pervasive, universal

• Used within a given Bounded Context

• Used in code, design documents, and conversations-- Everywhere

Page 14: Domain-Driven Design with ASP.NET MVC

Domain Terms

Domain Experts

Problem Domain

Core Domain

Sub-Domains

Page 15: Domain-Driven Design with ASP.NET MVC

Bounded Contexts• Provide Separation of Concerns

• Limit complexity

• Should be clearly bounded and separate

Page 16: Domain-Driven Design with ASP.NET MVC

Appointment Scheduling Billing

Page 17: Domain-Driven Design with ASP.NET MVC

Appointment Scheduling Billing

Anti-Corruption

Layer

Page 18: Domain-Driven Design with ASP.NET MVC

Model Driven Design

Not Data-Driven

Page 19: Domain-Driven Design with ASP.NET MVC

Layered Architecture

• Ports and Adapters

• Hexagonal

• Onion

Page 20: Domain-Driven Design with ASP.NET MVC

Organizing in a Solution

Page 21: Domain-Driven Design with ASP.NET MVC

Entities

“Many objects are not fundamentally defined by their attributes, but rather by a thread of continuity and identity.”

Eric Evans

Page 22: Domain-Driven Design with ASP.NET MVC

Changing Attributes Doesn’t Change Which One We’re Talking About

ID:1

•Name: Steve Smith

•Twitter: @ardalis

•Favorite Color: Blue

ID: 1

•Name: Steven Smith

•Twitter: @ardalis

•Favorite Color: Blue

ID: 1

•Name: Steven Smith

•Twitter: @ardalis

•Favorite Color: Orange

Page 23: Domain-Driven Design with ASP.NET MVC
Page 24: Domain-Driven Design with ASP.NET MVC
Page 25: Domain-Driven Design with ASP.NET MVC

Value Objects

• Defined by their attributes

• Immutable

• Should have no side effects

• Examples: strings, addresses, currency

Page 26: Domain-Driven Design with ASP.NET MVC
Page 27: Domain-Driven Design with ASP.NET MVC

Immutable!

Page 28: Domain-Driven Design with ASP.NET MVC

Domain Services• Not a natural part of an Entity or Value Object

• Interface defined in terms of other model elements

• Should be stateless (but may have side effects)

Page 29: Domain-Driven Design with ASP.NET MVC

Services in Different Layers

UI Layer& Application Layer

InfrastructureDomain(“Application Core”)

Message Sending

Message Processing

XML Parsing

UI Services

Transfer Between Accounts

Process Order

Send Email

Log to a File

Page 30: Domain-Driven Design with ASP.NET MVC

Domain Events

“Use a Domain Event to capture an occurrence of something that happened in the domain.”

Vaughn VernonImplementing Domain-Driven Design

Page 31: Domain-Driven Design with ASP.NET MVC

Domain Event Tips• Consider for cases of “when this happens, then…”

• Or “Notify someone when…”

• Domain events represent the past• They already happened

• Thus, they should be immutable

Page 32: Domain-Driven Design with ASP.NET MVC

Examples of Domain Events

User

Authenticated

Appointment

Confirmed

Payment

Received

$¢£¥

Page 33: Domain-Driven Design with ASP.NET MVC

Designing Domain Events• Each Event is a Class

• Use a common interface (e.g. IDomainEvent)• Capture when the event took place

• Include details• What would you need to know to trigger this event again?• Include identities of any entities involved

• Initialize all state in constructor

• No behavior or side effects – just state

Page 34: Domain-Driven Design with ASP.NET MVC

More DDD Topics

• Aggregates

• Repositories

• Factories

DDD Fundamentals on PluralsightEric Evans’ DDD [email protected]

Page 35: Domain-Driven Design with ASP.NET MVC

Domain Models and MVC Models• UI interacts directly with Domain Model

• Entities, Value Objects• Interfaces, Services

• Views may work with custom ViewModels

• Client (HTML/JS) code may use another ViewModel as well

Page 36: Domain-Driven Design with ASP.NET MVC

Controllers

• Keep as small as possible

• Eliminate business logic

• Inject all dependencies

Page 37: Domain-Driven Design with ASP.NET MVC

Views

• No logic unless encapsulated in tested helpers

• No business logic if it can instead be modeled in the domain

Page 38: Domain-Driven Design with ASP.NET MVC

SignalR

• Awesome addition to ASP.NET

• Great for notifications to multiple users

• Ties in easily with Domain Events

Page 39: Domain-Driven Design with ASP.NET MVC

Solution Structure• Core

• Interfaces• Model (Entities, Value Objects)• Domain Services

• Infrastructure• DbContext• File Access• System Clock Access• Email services

• Web• MVC Project• No direct use of Infrastructure

Page 40: Domain-Driven Design with ASP.NET MVC

DemoPutting DDD into ASP.NET MVC

Page 41: Domain-Driven Design with ASP.NET MVC