0

I have this scenario: I am using Telerik OpenAccess ORM.

I have a MySql database with the following structure:

Products:  
    ID, VendorID,   [Product Name], MeasureID,  [Base Price]  
Vendors:  
    ID, [Vendor Name]  
Measures:  
    ID, [Measure Name]

And the same DB structure in SQL server. Is there a direct way I can tell OpenAccess to get the data from the MySQL DB and upload it into the SQL server DB, or do I have to do workarounds?

Soner Gönül
  • 97,193
  • 102
  • 206
  • 364
Mario Stoilov
  • 3,411
  • 5
  • 31
  • 51

1 Answers1

1

You could follow this help article. It explains how to prepare a domain model, reuse it for different backends and switch between them during runtime.

Damyan Bogoev
  • 688
  • 4
  • 12