Occasionally we have to hand-craft SQL and it would be nice if we could get the TableName and TableSchema from the Business Object as a static call rather than instantiate the BO just to get a string.
Forgive the contrived example:
var myBO = new MyBO();
String.Format("MyBO TableName: {0}, myBO.TableName);
String.Format("MyBO TableName: {0}, MyBO.TableName);
Thanks,
Derek