Stories recently tagged with 'Patterns' Subscribe to this feed

Mapping Many to Many relationships using Fluent NHibernate (www.mattlong.com.au)

submitted by mattdlongmattdlong(45) 12 hours ago

In my previous posts I went over the basics of mapping objects to traditional relational database tables and mapping relationships using Fluent NHibernate. One relationship I neglected to discuss in the previous post was a Many to Many relationship and how it is mapped using Fluent NHibernate, that is going to be the topic of today’s post. read more...

add a comment | category: | Views: 4

tags: another

Mapping Relationships using Fluent nHibernate (www.mattlong.com.au)

submitted by mattdlongmattdlong(45) 1 day, 11 hours ago

In my last post I went over the basics of mapping properties on a POCO object to fields on a database table. If you haven’t already check it out here. In this post I’m going to focus on mapping relationships, that is, what if we wanted our objects to contain concrete references to the objects with which they have relationships, rather than just foreign key properties. read more...

add a comment | category: | Views: 2

tags: another

The Basics of Mapping Objects to a Database using Fluent nHibernate (www.mattlong.com.au)

submitted by mattdlongmattdlong(45) 1 day, 15 hours ago

In this post I’ll be taking a look at how we can set up mappings between regular .Net objects and database tables using Fluent nHibernate. read more...

add a comment | category: | Views: 3

tags: another

Exploring the MVP Pattern (www.reducingcomplexity.com)

submitted by edindedind(85) 3 days, 9 hours ago

Model View Presenter pattern applied by using example application. read more...

add a comment | category: | Views: 6

tags: another

The differene between an Anti-Pattern and a Code smell (msmvps.com)

submitted by PeterRitchiePeterRitchie(1425) 6 days, 11 hours ago

Peter discusses the difference between an Anti-Pattern and a Code Smell. read more...

add a comment | category: | Views: 3

tags: another

Thoughts on OO design (www.reducingcomplexity.com)

submitted by edindedind(85) 9 days, 13 hours ago

OO design is an creative activity. To be successful at it, you’ll need a mixture of both talent and learned skills. There is no such thing as correct design. There is only good, bad and somewhere-in-between design.. read more...

add a comment | category: | Views: 5

tags: another

Implementing Domain Queries (www.lostechies.com)

submitted by johnteaguejohnteague(10) 10 days, 10 hours ago

Using domain queries with Nhiberante and Linq read more...

add a comment | category: | Views: 2

tags: another

When will you be "Done" (www.smelser.net)

submitted by JoeGeekyJoeGeeky(65) 11 days, 1 hour ago

Not as straight-forward as it might seem read more...

add a comment | category: | Views: 4

tags: another

I'll be your Provider (www.smelser.net)

submitted by JoeGeekyJoeGeeky(65) 15 days, 15 hours ago

This is a nice factory pattern to use with DDD. Also explains a lot of built in providers in .NET read more...

add a comment | category: | Views: 3

tags: another

Singleton Class – C#’s MVP (www.esourcedevelopment.com)

submitted by zaprousdowerzaprousdower(10) 17 days, 6 hours ago

A short and simple description of the Singleton design pattern with sample source. read more...

add a comment | category: | Views: 5

tags: another

Inverting my control (www.smelser.net)

submitted by JoeGeekyJoeGeeky(65) 18 days, 1 hour ago

Not new but not utilized as much as it should be read more...

add a comment | category: | Views: 3

tags: another

Watch what you say, or else! (www.smelser.net)

submitted by JoeGeekyJoeGeeky(65) 18 days, 15 hours ago

This is a handy pattern for this kind of issue read more...

add a comment | category: | Views: 7

tags: another

Is my code Fluent? (www.smelser.net)

submitted by JoeGeekyJoeGeeky(65) 19 days, 13 hours ago

Nice overview of how to implement this pattern read more...

add a comment | category: | Views: 17

tags: another

(MVP) Model View Presenter - Passive View (coding.infoconex.com)

submitted by infoconexinfoconex(75) 23 days, 15 hours ago

Explanation of the MVP Model View Presenter - Passive View by demonstrating it via a C# .NET Winform project. Shows writing the application using code behind approach and then refactoring the project to use the MVP pattern. read more...

add a comment | category: | Views: 27

tags: another

Aliased Maps Design Pattern (georgemauer.net)

submitted by togakangarootogakangaroo(30) 23 days, 18 hours ago

A C# functional-flavored pattern that I've been using for some time but have never really seen anyone else do. When DDD is too much work, this can be a good way of composing your application. read more...

add a comment | category: | Views: 9

tags: another

Reducing Code Coupling - Inversion of Control (grantpalin.com)

published 23 days, 13 hours ago, submitted by grantpalingrantpalin(342) 25 days, 18 hours ago

This is the conclusion to my series on reducing code coupling. This installment follows from the previous ones, building on them by introducing the Inversion of Control pattern. read more...

2 comments | category: | Views: 632

tags: another