Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
2
votes
6answers
703 views

Any insight on Microsoft's new M programming language?

Does anyone have any insight on microsoft's new M programming language? Why? What type? When? What?
1
vote
4answers
49 views

PHP Array problem

array( array('codcentrocustos' => 1, 'codparent' => null, 'name' => 'lorem ipsum'), array('codcentrocustos' => 2, 'codparent' => 1, 'name' => 'lorem ipsum1'), ...
1
vote
3answers
238 views

What is M language?

Microsoft has M language. Can someone explain the use of M, why it is useful and what a programmer of C# can benifit from M.
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
1answer
95 views

Interesting uses of M?

I know M is a new language from Microsoft that's targeted as a modeling solution but I'm still a bit fuzzy on usage / rationale / advantages. That's why I'm looking for interesting things that people ...
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
1answer
30 views

LNK Error while compiling rsa library

why am i getting this LNK error when trying to compile this rsa library: http://www.efgh.com/software/rsa.txt from http://www.efgh.com/software/rsa.htm mpuint.obj : error LNK2019: unresolved external ...
0
votes
2answers
48 views

iOS app with a strange structure

I have the code of an application but inside it there aren't ".m" files, but app works fine and runs on device; is it possible? I don't understand this fact, can you explain me this case?
0
votes
0answers
5 views

calculating a multi-level variable in R

I have a table of plant measurements (cath) from different years that I need to add a new variable to (change in total biomass, or TBM). For simplicity, the table currently looks something like ...
0
votes
0answers
54 views

MVC Implementation ASPX Pages

Hi i'm trying to implement a MVC sample, using the same controller for Windows Formrs UI and Web UI, so my controller first is trying to get the IView Interface, that is working good for windows, but ...
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: ...
-1
votes
0answers
11 views

Getting the Text of Drop down list in mvc 3

Friends I need to get the selected text of drop down list in post back.In post back i need that in form collection object, since it in not bind to any model or strongly typed. Currently, key of form ...