The query below makes use of ExecuteUpdate. I want said method to respect session filters. Is this possible?
I\'m witnessing some strange behaviour from Fluent nHibernate. I have two objects involved in this problem: a \"Page\" object and a \"Metadata\" object. A Page can have multiple Metadata objects attac
A recent release of Fluent Nhibernate (1.1) now supports stored procedures. I was wondering if anyone out there has found any good blog articles on how to do this!
All examples of fluent nhibernate make such(or similar) call: c.AddMappingsFromAssembly(typeof(Product).Assembly);
I\'m trying to map a view without an identifier, but nhibernate still generates a sql w开发者_如何学编程ith the id column (giving me a sql error, since the ID column does not exists in the db). Maybe
I am looking for solid non-console examples of how to use ASP.NET MVC1 or MVC2, NHibernate, Fluent NHibernate & Castle. I looked at Sharp Architecture and its just too much to digest for my newbie
This is the first time I\'ve used interceptors with the fluent registration and I\'m missing something.With the following registration, I can resolve an IProcessingStep, and it\'s a proxy class and th
We have a number of applications that are now looking tired and a bit drab. Looking at the MS style fluent interface looks nice but seems (to me) to be more document based rather than task based.
I have problem with making mapping of classes with propert of type Dictionary and value in it of开发者_C百科 type Dictionary too, like this:
i have these 2 classes: public class Category { IDictionary<string, CategoryResorce> _resources; } public class CategoryResource