Does ToFuture works with nhibernate linq? If so, how开发者_StackOverflow社区 do you use it?Be carefull ToFuture only works if the database driver supports MulitpleQueries. This is only the case in som
I have a Windows Service Application in which i create WCF services in it. Oneof the services is data services: add, delete,
Say I have a very simple entity like this: public class TestGuy { public virtual long Id {get;set;} public virtual string City {get;set;}
We have upgraded to NHibernate 3.0 开发者_Python百科with Fluent-NHibernate. In version 2.1.2 we where able to use the SybaseDialect for ASE 12. In version 3.0 SybaseDialect for ASE 12 is not supporte
Can anyone link to or list the new feature开发者_开发技巧s of NHibernate 3.0?Jason Dentlers book is good start for NHibernate 3
I got this block of code from the NHibernate 3 Cookbook (an excellent book, btw), and while I couldn\'t find anyting in the errata about it. I\'m getting the error \"Cannot access a closed stream\":
I used to be able to run the following code as a multi query in NHibernate 2.1 using MySQL var total = new LeagueInfoQuery { Count = true, User = CurrentUser }.CreateCriteria(session).FutureValue<
In short, the problem is that, when add child object to the collection property of the parent object without explicit setting the parent property of the child object, the insert will fail. Let\'s take
Yesterday, I upgraded my NHibernate application from 1.2 to 3.0. I get the following exception c.SubContractors is not mapped [SELECT count(distinct c) FROM CallUp c, c.SubContractors sc Where sc.id
I\'ve just started a new project which requires a WCF service to handle a distributed environment. I\'m still trying to find the best way to implement things.