I have Business objects (DEVELOPERS WRITE) and some SPROCS (DBA WRITE)
Can anyone recommend a good object mapper to deal with this kind of setup.
I tried co
Subsonic has a flexible solution:
class CustomerOrder {
private string productName;
public string ProductName {
get { return productName; }
set { productName = value; }
}
private int total;
public int Total {
get { return total; }
set { total = value; }
}
}
Then:
List orders = Northwind.SPs.CustOrderHist("ALFKI")
.ExecuteTypedList();
Subsonic is a solid "Swiss Army knife" style ORM.