Tagged Questions
6
votes
4answers
518 views
What advantages does using Oslo and M have and when would you use it?
After attending a talk on Oslo/M I am struggling a bit to see the advantages of using it over existing methods and in what situation it would be useful.
I know its quite new and not all details have ...
5
votes
3answers
571 views
Oslo's Intellipad: How to set up the 3 column MGrammarMode?
I've been using Oslo for MSchema. Works great. I can write an M Schema for a database design and it generates T-SQL to build the entire db with PKs, FKs, checks for integrity etc. I've set up a ...
1
vote
1answer
76 views
Is there a better way to define a decimal in an MGrammar?
I'm working on a DSL in Microsoft's new M Grammar, and it needs to allow decimal values. I've defined decimal as
token digits = "0".."9";
token spot = ".";
token decimal = digits+ | digits+ spot ...
1
vote
2answers
168 views
Explanation of Oslo error “M2037: SQL Generation Internal Error: Missing generator for variable”?
In Microsoft Oslo SDK CTP 2008 (using Intellipad) the following code compiles fine:
module T {
type A {
Id : Integer32 = AutoNumber();
} where identity Id;
As : A*;
type B ...
0
votes
3answers
253 views
Explanation of Oslo error “M0197: 'Text' cannot be used in a Type context”?
In Microsoft Oslo SDK CTP 2008 (using Intellipad) the following code compiles fine:
module M {
type T {
Text : Text;
}
}
while compiling the below code leads to the error "M0197: ...