doers anyone know of a good utility or program to interrogate a solution or a directory for all projects and tell you where circular references are and possible compile in order..
I remember see one a while ago but i can't find it anywhere..
This question is a part of my original post here Get Data Into Extjs GridPanel
Below is my Controller that reads data from sql db and then I am trying to encode the result as JSON and send the data …
Consider these two classes:
public class A
{
B b;
public A(B b) { this.b = b; }
}
public class B
{
A a;
public B() { this.a = new A(this); }
}
If I have classes designed like above, would the objects of such …
I'm using Automapper to map my NHibernate proxy objects (DTO) to my CSLA business objects
I'm using Fluent NHibernate to create the mappings - this is working fine
The problem I have is that the Order has a collection of …