0
votes
1answer
26 views
NHibernate Many-to-many with Count
I have entities Post and Tag, where there is a many-to-many relationship between the two (e.g. each post can have one or more tags, and each tag can be associated with any number o …
0
votes
1answer
20 views
S#arp Architecture Fluent mapping for self referencing entity (Tree structure)
I've come up against a problem in converting my Fluent NH mapping to Sharp Architecture. I like the platform for it's ease, however it seems to handle entity mappings slightly diff …
0
votes
2answers
25 views
Fluent NHibernate PersistenceSpecification
Hi! I got the following error message:
System.IndexOutOfRangeException: Invalid index 9 for this SqlParameterCollection with Count=9..
And I absolutely wonder why oO?!
The data …
0
votes
1answer
11 views
StructureMap help needed
How can I rewrite following so that I can do ObjectFactory.GetNamedInstance("MyNHConfiguration") at later time. "Configuration" is in the variable "cfg" under ExposeConfiguration …
1
vote
2answers
15 views
How can I use the NHibernate Configuration class with Fluent NHibernate.
I want to be flexible even after deploying my code so I like to use the hibernate.cfg.xml file for configuring NHibernate. Now, I am planning to use Fluent NHibernate to do all my …
0
votes
2answers
23 views
How do I compare an object with an NHibernate proxy object?
I'm using Compare .NET Objects to test whether my POCOs are persisted correctly to a test database. Let's take an example POCO:
public class NoahsArk
{
public virtual Noah Noa …
0
votes
2answers
41 views
Many to Many relationship with Fluent NHibernate
Hi! I'm getting the following error: "Can't figure out what the other side of a many-to-many should be."
Team Entity:
public class Team : IEntity
{
public int Id { get; set; } …
0
votes
4answers
57 views
How to map the NHibernate Data Model to the Domain Model?
I started creating a domain model and now I asking myself, how can I map this domain model to a NHibernate Data Model ((using Fluent NHibernate)? Is there anywhere a good and simpl …
0
votes
2answers
29 views
GridView doesn’t cause NHibernate proxy to load relationships
I'm currently learning NHibernate and I would like to data-bind to Web controls (i.e. GridView).
In my current example I am using Fluent NHibernate to map two tables to their busi …
1
vote
1answer
26 views
Fluent NHibernate, varbinary(max) and SQLite
Hi,
I have a varbinary field in my sql server database that needs to be varbinary(max). I create my database with NHibernate and I use Fluent Nhibernate for my mappings.
I also u …
3
votes
2answers
56 views
How do I convert an object from Reflection to a generic collection?
I'm trying to write a Compare method to compare properties in some POCOs using Reflection to ensure that they've been persisted to the database correctly. For example, let's say I …
0
votes
1answer
31 views
How can I diagnose/fix this NHibernate.PropertyAccessException?
Given the following Fluent NHibernate maps:
public class FastTrackPackageClassMap : ClassMap<FastTrackPackage>
{
public FastTrackPackageClassMap()
{
Id(x =&g …
0
votes
1answer
19 views
fluent nhibernate join vs hasmany / manytomany
whats the difference between using join() and using hasmany mappings to map entities.
Can I get same results using both of these features--- I would think Join() would let you thin …
0
votes
3answers
32 views
How do I map an insert only table with NHibernate?
Hi,
I have a scenario where I have a parent class with some definitions we can call if Foo to be unique and then a child class that I chose to call Bar. Together they make Foo Bar …
0
votes
5answers
101 views
NHibernate Code Generation
Hi All,
I am working with NHibernate, and a few code generation tools. MyGeneration is one and SmartCode is the other.
This question has been asked before, but I have looked at s …
