I get the error when trying to use breezejs, the type is a complex type from entity framework (code first).
Uncaught Error: Unable to recognize DataType for: Edm.Self.Address
Are there any workarounds for using complex types with breezejs?.
from my entity framework model:
public class Address
{
public string Id { get; set; }
public string Street { get; set; }
public string City { get; set; }
public string ZipCode { get; set; }
public string Contry { get; set; }
}
Breeze does not yet support Entity Framework Complex types. It is on our roadmap but we are not there yet. Please vote for this feature on the Breeze website (www.breezejs.com).