Model1.csdl 920 B

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Schema Namespace="user1Model" Alias="Self" annotation:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
  3. <EntityType Name="Service">
  4. <Key>
  5. <PropertyRef Name="Code" />
  6. <PropertyRef Name="Service1" />
  7. <PropertyRef Name="Price" />
  8. </Key>
  9. <Property Name="Code" Type="Int32" Nullable="false" />
  10. <Property Name="Service1" Type="String" MaxLength="100" FixedLength="false" Unicode="false" Nullable="false" />
  11. <Property Name="Price" Type="Double" Nullable="false" />
  12. </EntityType>
  13. <EntityContainer Name="user1Entities" annotation:LazyLoadingEnabled="true">
  14. <EntitySet Name="Service" EntityType="Self.Service" />
  15. </EntityContainer>
  16. </Schema>