I have a legacy schema that contains tables with composite keys where some of the keys are of type binary(16) -- its a MD5 hash of the other columns. I am having trouble finding the right way to map t
I\'m trying to follow this tutorial but instead of generating the exp开发者_StackOverflow中文版ected hbm.xml files with my mappings in it generates simple .cs class for my entities like for example:
I\'ve used Fluent NH in some projects but I\'m having some problems with using the PersistenceSpecification class for testing a collection mapping. Here\'s the code for my classes (I\'m just putting h
I\'ve been trying to wrap my head around subclasses and joined subclasses in Fluent nHibernate for a few days now without making any sort of headway.I\'ve looked at the wiki but it doesn\'t seem to gi
Database Strucutre: Shows ID Name Genres ID Name ShowsGenres ShowsID GenresID Above is my Database I am trying to figure out how to map this properly. My Show object is like this:
I have a database that I\'m running several applications from. I like to separate the tables by creating a schema for each application. For my newest application I\'m using FluentNHibernate. Seems lik
I\'m working on tests for my Fluent NHibernate mappings, and my question is - is it a good idea to test for id value if Id column is represented by identity in Sql Server? Since it changes after each
Class Person { int ID; IList<Cat> cats; } Class Cat { int OwnerId; } how to map person cats on nhibernate fluent?
I\'m using NHibernate with Fluent, and I\'m trying to do a GetAll type thing using Critera.List: public static List<T> GetAll(int pageIndex, int pageSize)
I have a requirement to load a complex object called Node...well its not that complex...it looks like follows:-