Are you trying to create a SSDL/EDM file for Entity Framework and Npgsql ? Are you getting the following error?
error 0040: The Type … is not qualified with a namespace or alias. Only PrimitiveTypes can be used without qualification.
This is caused by Npgsql mapping a very sparse selection of type-names to the underlying Entity Framework type structures.
As of 2.0.9, the following type names are recognized:
- bool
- int2
- int4
- float4
- float8
- uuid
- numeric
- bpchar
- varchar
- text
- xml
- timestamp
- date
- bytea