-
Notifications
You must be signed in to change notification settings - Fork 2
FAQ
Data Source is a component what can connect to data source and provide following main operations:
- Get data (with or without filter criteria)
- Notify about record changes
- Submit changes
Worksheet is a presentation on top of Data Source. Worksheet can customize Data Source horizontally (columns) and vertically (filter)
Data Virtualization Layer allows you to :
- join things together, regardless original Data Source
- cache your data
- ensure integrity
- Another layer for Data Modeling
You need to write connector, what will allow us to get data from your source, subscribe on changes to your data and give you back changes made in UI. You have to implement IDataProvidersCatalog
.
Copy all data into our own data repository and listen to updates.
Yes, we can. You can set AllowAccessOriginalData = true
(default is False) and we will call GetData with a specific FilterRules every time if we don't have it in our cache.
We do know how users query data, hence we can create indexes for effective usage
Absolutely.
Console and Desktop GUI at the moment
Yes you can provide filter string and events will be filtered far back in the server
Not yet. This functionality is comming
Not yet. This functionality is comming
Yes you can. Just take one of our FacadesFactory and call facades functions
You can use our tool or you can submit JSONs straight through IMetaDataAdminFacade
You will need a specific connector. Basically, you have to implement IDataProvider & IDataProvidersCatalog
interfaces
Just create another Worksheet or even Aggregated Worksheet.