Hello Randy Minder,
Telerik OpenAccess ORM uses the persistent classes to "communicate" with the database. Your database tables are represented by the persistent classes in your application. Every class that is marked with the [Persistent] attribute can be persisted to the database. So lets say that you have a class called Order and this class is marked as Persistent. Whenever you create new order in your application and add it to the object scope, this new order will be added to the database in the corresponding table (in our case Orders). Here is an example:
Best wishes,
Petar
the Telerik team