Please, Please, Please follow us at twitter! @AtMDriven Zero followers! I will tweet news in the Framework and retweet stuff in #nocode and #lowcode with comments! Thank you 0
Remove the Stupid degrees of freedom
This is what almost all progress in areas of productivity and security is about – remove the stupid degrees of freedom. Sure there are people out there arguing that life is less electric when builders do not fall off skyscrapers in production due to guard rails in front of all +1meter drops. And yes, they …
Introducing Styles In Model
Before you go berserk and scream at the top of your voice : “STYLING IS A UI THING AND SHOULD NOT GO INTO THE MODEL SINCE IT WILL BREAK THE PRINCIPLE OF VIEW/MODEL SEPARATION ” – before you do that I would like to calmly state that a lot of the time we use styling …
Getting data from anywhere- like for example Spotify – that is Oauth2 protected
Number 1 to get a successful integration going is : Read the documentation of the service you want to connect with – also read MDriven wiki and articles like this! Number 2; remember that security is very often a precision sport – “close” does not cut it and often gives you the same error as …
Localization
Localization is the processes of translating a product to work in a new culture or language. When it comes to MDriven we are in a good seat for handling all the texts that are available in a system. Since we have the meta model of the system we can in theory know about all texts …
Excel Rocks! But…
If you do solutions for colleagues with Excel you have the ability to build enterprise grade multi user information systems with MDriven in about the same time. Excel is amazing – it empowers you. We want to empower you even more with MDriven. Excel is so great because you do not need the IT department …
Reverse derived–more than what one may think of
The ability to reverse derive an attribute is practical in many circumstances – but it may not be obvious to everybody just what it can be used for. What is obvious is that you may have a derivation that collects a couple of strings like self.FirstName+’ ’+self.LastName, and that the reverse derive action can be …
The Modern QueryPlanner
The goal of the Modern Queryplanner is this: Reduce server roundtrips for data fetch by analyzing viewmodel context and inform server with precision on what to deliver. Doing this will reduce latency penalties on fetch and reduce over all sql server load by using fewer larger questions rather than many small questions. The new modern …
Cursored or Full Tree
There are two ways to look at object graphs used for defining ViewModels in MDriven. “Cursored” or “Full Tree” Consider this model: Lets say we have 1 Class1 object that has 2 Class2 objects and for each Class2 object there are 2 Class3 objects. This would give us an instance diagram of actual objects like …
Working with REST– a quick way to get Json example turned into model
When you work with REST-services you will consume a lot of structured results in the form of Json data. Reading the Json specification to create a matching model – attribute by attribute, relation by relation is tiresome. To help you with this consider the new function “add attributes, associations and classes from clipboard json ” …