Re: where www.castleproject.org gone???

2009-09-14 Thread Roelof Blom
Please see this discussion for what's happened, and a local fix http://groups.google.com/group/castle-project-devel/browse_thread/thread/f9605490ce8eed27?hl=en On Mon, Sep 14, 2009 at 6:29 PM, zorwi zo...@163.com wrote: I visit www.castleproject.org .but I can't see any thing about

AR - Maintaining and reactivating multiple SessionScopes

2009-09-14 Thread Dan Malcolm
Hi I am making a change to an existing ActiveRecord-based winforms application. This involves allowing the user to have several screens open at once, each of which manages a separate business conversation. Each screen instance needs its own SessionScope. On a different NHibernate project, I've

Older versions

2009-09-14 Thread Albert Dondero
I am trying to find an older version (1.1.5) of Castle. What I am really looking for is the Release build of the DLLs. When we first downloaded, we did not realize that someone download (or built) the Debug version. At this point, we can not upgrade to the latest, but we are starting to plan

castleproject.org is back online

2009-09-14 Thread Henry Conceição
Hi all, The Castle Project website and svn are back online. Due the nature of the problem (it was an issue with the dns server) can take some time for the changes propagation. Cheers, Henry Conceição --~--~-~--~~~---~--~~ You received this message because you

Re: Older versions

2009-09-14 Thread Ken Egozi
look for the last number in the version, it should be the SVN revision.then svn up this version, look in the how to build.txt., and get yourself a brand new Release build. On Mon, Sep 14, 2009 at 8:36 PM, Albert Dondero adond...@gmail.com wrote: I am trying to find an older version (1.1.5)

Re: Older versions

2009-09-14 Thread John Simons
The other option is to have a look for the binaries in http://sourceforge.net/projects/castleproject/files/ On Sep 15, 7:28 am, Ken Egozi egoz...@gmail.com wrote: look for the last number in the version, it should be the SVN revision.then svn up this version, look in the how to build.txt., and

Newbie Question

2009-09-14 Thread Gustavo Melo
I have a table (user) [ActiveRecord(user)] public class User : ActiveRecordBase { [PrimaryKey(PrimaryKeyType.Assigned, usu_id)] public string Id { get; set; } [Property(name, NotNull = true)] public string Login { get; set; } } How do i update all users in the

DynamicProxy - ClassProxy question

2009-09-14 Thread José F . Romaniello
Sorry, this is a newbie question about the design of DP. Why a ClassProxy doesn't have target? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Castle Project Users group. To post to this group, send email to

Re: AR 2.0 WinForms session management

2009-09-14 Thread Troy Schmidt
Care to share this wrapper methodology? I have been searching for a whole day to try and find out about nhibernate session management and how I can incorporate that into Castle, but not finding much info at all. On Sep 9, 7:03 am, Gerdus van Zyl gerdusvan...@gmail.com wrote: I used to use a

Re: Newbie Question

2009-09-14 Thread Gauthier Segay
Best way is executing an update HQL statement: http://ayende.com/Blog/archive/2009/05/28/nhibernate-ndash-executable-dml.aspx using the execute callback is the straight forward way: http://www.castleproject.org/ActiveRecord/documentation/v1rc1/usersguide/hql.html On Sep 14, 9:43 pm, Gustavo

Re: DynamicProxy - ClassProxy question

2009-09-14 Thread Krzysztof Koźmic
because for ClassProxy, the proxy type inherits from the proxied class. That is to have one instance to call to both members - these proxable, and these nonproxyable, among other things. 2009/9/15 José F. Romaniello jfromanie...@gmail.com: Sorry, this is a newbie question about the design of