You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to have a model with circular dependencies. Something like this:
Product
{
category: Category
}
Category
{
products: Product[]
}
I prepared this model using annotations and plain classes, but it generates incorrect metadata.
Type of navigation property products is Collection. It should be Collection(Product).
When I used previous version of your library it started to working ok.
I want to have a model with circular dependencies. Something like this:
Product
{
category: Category
}
Category
{
products: Product[]
}
I prepared this model using annotations and plain classes, but it generates incorrect metadata.
Type of navigation property products is Collection. It should be Collection(Product).
When I used previous version of your library it started to working ok.
Incorrect metadata for:
"odata-v4-mongodb": "^0.1.12",
"odata-v4-server": "^0.2.10"
Correct metadata for:
"odata-v4-mongodb": "^0.1.9",
"odata-v4-server": "^0.1.38"
Maybe I should generate my model using different approach? Can you help me?
The text was updated successfully, but these errors were encountered: