Hi, I just wrote the following code which brought me back to this thread: To give a bit of background, I cannot serialise a certain object so I am setting some...
Hi to all. I'm looking for some sort of scripting engine / language which can be run both on a win forms client and a java / flex environment. My company owns...
16017
Ayende Rahien
Ayende@...
Oct 1, 2008 12:50 pm
That is one option, note that you have an issue with assembly leak in this scenario.Other options include using Rhino, the JS runtime from Firefox. That is...
I like the idea to move the LINQ queries to the domain layer, as the syntax fits both to the db and to the in-memory implementation. This was one of my hopes...
Isn't Rhino pure Java? How would I integrate this with my UserControl based form in winforms? ... in this...
16020
Ayende Rahien
Ayende@...
Oct 1, 2008 1:03 pm
It is C++, IIRC.Worst case, you can call java from .net ... It is C++, IIRC. Worst case, you can call java from .net On Wed, Oct 1, 2008 at 3:58 PM,...
Difficult to say much just seeing one property... My original problem with properties was that it easily makes you just think of objects as "stupid" data...
It is a DTO and you are very correct in saying it could go in the constructor.The only problem is that is also an NHibernate object that forces me to have a...
"Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically embedded into Java applications to provide scripting to end...
TO me the question is will you use the getter. If you not, then use the AddQuestion method. To me the intentions are clearer, although you aren't really...
One thing that was buried in the recent Rosario announcements is that Microsoft has decided to merge the Developer and Database (AKA "Data Dude") Editions of...
Is it a DTO or a domain object? You say both here. 1) A setter is obviously not a bad thing on a DTO 2) You say you are in a place where DTOs and domain...
Just to clarify (and its a good rule of thumb for DDD usage in general) If you are worried the typing time involved with creating DTOs that are separate from...
Is it true that NHibernate will allow the mandated empty constructor to be private? I always thought it had to at least be protected (but not private). If...
... Brother I aint applying DDD or even trying to.I just want to know why anybody could explain why properties aka mutators are so intrinsically evil when in...
Perhaps you should read the whole thread. The properties discussion here was absolutely in a DDD context. In particular the avoidance of anemic domain models...
In 4.1.2 in the NHibernate documentation:"All persistent classes must have a default constructor (which may be non-public) so NHibernate can instantiate them...
Mine are private. -- Luis Abreu From: altdotnet@yahoogroups.com [mailto:altdotnet@yahoogroups.com] On Behalf Of James Sent: quarta-feira, 1 de Outubro de 2008...
Out of interest ... How do you create a new one ? Casey Charlton http://devlicio.us/blogs/casey ... Out of interest ... How do you create a new one ? Casey...
Via NHibernate. :) and to create one that I'm passing to NHibernate we have constructors that take in all the required information. ... -- Ryan Rinaldi msn:...
Yes, they're only there to make NH happy :-) -- Luis Abreu From: altdotnet@yahoogroups.com [mailto:altdotnet@yahoogroups.com] On Behalf Of Casey Charlton Sent:...
The real question is how do you validate your state when you are hydrated from persistence. Cheers, Greg ... -- It is the mark of an educated mind to be able...
Ensure your application owns the database ... you write it, you read it ... ? 2008/10/1 Greg Young <gregoryyoung1@...> ... Ensure your application owns...
Funny I have heard that else where as well. Even when you own it though that presumes that your roll outs are always spot on and never have a mistake made in...
That's not always a given, although I believe it should be... ... -- ps - this is what part of the alphabet would look like with the letters 'q' and 'r'...
Oh and it also of course presumes that you don't have an update happy dba playing on production. Cheers, Greg ... -- It is the mark of an educated mind to be...