Menu

Tdo 2.0.50727.9 released.

Tdo 2.0.50727.9 released.
-------------------------

Download Tdo from: http://tdo.sourceforge.net

Build History - 2.0.50727.9
-------------------------------------
- Bug fix on TdoBinary type.
- Added Uninstall shortcut in Start\Programs\Tdo menu.
- Added SelectXXX methods that returns an array of XXXTable instead of untyped System.Data.DataTable object.
(For example, consider Employees table of Northwind DB)
C#:
1) EmployeesTable[] EmployeesTable.SelectEmployees(string clauses); //Return an array of EmployeesTable objects.
VB.NET:
1) Function SelectEmployees(ByVal clauses As String) As EmployeesTable() 'Return an array of EmployeesTable objects.
- Added 2 kind of methods to TdoTable object to allows navigation between Tables with FK Relations:
(For example, consider Employees table of Northwind DB)
C#:
1) OrdersTable[] SelectChildrenFromOrders(TdoSqlExpression whereExpression); //Select an array of OrdersTable children records from Orders Table.
2) EmployeesTable SelectParentFromEmployees(); //Select parent record from Employees Table.
VB.NET:
1) Function SelectChildrenFromOrders(ByVal whereExpression As TdoSqlExpression) As OrdersTable() 'Select an array of OrdersTable children records from Orders Table.
2) Function SelectParentFromEmployees() As EmployeesTable 'Select parent record from Employees Table.

Andrea Ferendeles (aferende@hotmail.com)

--------------------------------------------------
Tdo Web site: http://tdo.sourceforge.net
Tdo Web site at sourceforge.net: http://sourceforge.net/projects/tdo
Send tdo-users mailing list submissions to: tdo-users@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit: https://lists.sourceforge.net/lists/listinfo/tdo-users
You can reach the person managing the list at: tdo-users-admin@lists.sourceforge.net

Posted by Andrea Ferendeles 2006-03-30

Log in to post a comment.