3

This is my model on the server side. I don't want to use Entity Framework, how would I generate BreezeJS metadata from the server. Breeze Metadata Format found here http://www.breezejs.com/documentation/breeze-metadata-format doesn't work.

public class User
{
    public string Id { get; set; }
    public string Name { get; set; }
    public List<App> Apps { get; set; }
}

public class App
{
    public string Id { get; set; }
    public string Name { get; set; }
    public Dictionary<string, string> Info { get; set; }
}

Did anyone try complex objects (nested object) similar to above one without using EF.

Using Breeze Metdata API or OData ?

4

1 回答 1

1

看看这个例子http://www.breezejs.com/samples/nodb它应该给你一个线索。

于 2013-04-07T13:09:39.807 回答