Hi,

Hoping you can help me with a mapping problem I have. At the moment I
have a view which returns something such as:

Name | Title | Price | Date | Format | FormatPriority |

Example data may be:

Bob | Credits | 340 | 01/01/2010 | BAR | 10 |
Bob | Credits | 340 | 01/01/2010 | FOO | 20 |
Bob | Credits | 340 | 01/01/2010 | WOO | 40 |

What I want is a domain model which looks like this:

string Name;
string Title;
int Price;
DateTime Date;
IEnumerable Formats;

Format class would then have:

string Type
int Priority

At the moment we are using the ClassMap approach within Fluent
NHibernate (not auto config). How would we map this? The Component
doesn't seem to support a collection and this isn't a HasMany
relationship as it's coming back as part of the same query.

Any ideas??

Thanks

Ben

-- 
You received this message because you are subscribed to the Google Groups 
"Fluent NHibernate" group.
To post to this group, send email to fluent-nhibern...@googlegroups.com.
To unsubscribe from this group, send email to 
fluent-nhibernate+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/fluent-nhibernate?hl=en.

Reply via email to