Sin descripción

Model1.ssdl 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Schema Namespace="labModel.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2008" xmlns="http://schemas.microsoft.com/ado/2009/02/edm/ssdl">
  3. <EntityContainer Name="labModelStoreContainer">
  4. <EntitySet Name="users" EntityType="labModel.Store.users" store:Type="Tables" Schema="dbo" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" />
  5. </EntityContainer>
  6. <EntityType Name="users">
  7. <Key>
  8. <PropertyRef Name="id" />
  9. </Key>
  10. <Property Name="id" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
  11. <Property Name="email" Type="nchar" MaxLength="40" />
  12. <Property Name="hashed_password" Type="nchar" MaxLength="250" />
  13. <Property Name="created_at" Type="datetime" />
  14. <Property Name="updated_at" Type="datetime" />
  15. <Property Name="active" Type="bit" />
  16. </EntityType>
  17. <!--Errors Found During Generation:
  18. warning 6013: The table/view 'lab.dbo.v_master_view' does not have a primary key defined and no valid primary key could be inferred. This table/view has been excluded. To use the entity, you will need to review your schema, add the correct keys, and uncomment it.
  19. <EntityType Name="v_master_view">
  20. <Property Name="PRO1" Type="float" />
  21. <Property Name="PRO1C" Type="nvarchar" MaxLength="255" />
  22. <Property Name="PRO2" Type="nvarchar" MaxLength="255" />
  23. <Property Name="PRO5" Type="float" />
  24. <Property Name="PRO8" Type="float" />
  25. <Property Name="PRO9" Type="nvarchar" MaxLength="255" />
  26. <Property Name="PRO10" Type="float" />
  27. <Property Name="PRO11" Type="float" />
  28. <Property Name="PRO12" Type="float" />
  29. <Property Name="PRO13" Type="nvarchar" MaxLength="255" />
  30. <Property Name="PRO14" Type="float" />
  31. <Property Name="PRO15" Type="nvarchar" MaxLength="255" />
  32. <Property Name="PRO16" Type="float" />
  33. <Property Name="PRO17" Type="nvarchar" MaxLength="255" />
  34. <Property Name="PRO18" Type="nvarchar" MaxLength="255" />
  35. <Property Name="MC23" Type="nvarchar" MaxLength="255" />
  36. <Property Name="MC20" Type="float" />
  37. <Property Name="MP34" Type="nvarchar" MaxLength="255" />
  38. <Property Name="MP39" Type="nvarchar" MaxLength="255" />
  39. <Property Name="MI13" Type="float" />
  40. <Property Name="TC" Type="float" />
  41. <Property Name="MI14" Type="float" />
  42. <Property Name="MI15" Type="float" />
  43. <Property Name="MI16" Type="float" />
  44. <Property Name="MI17" Type="nvarchar" MaxLength="255" />
  45. <Property Name="MI18" Type="float" />
  46. <Property Name="MI19" Type="float" />
  47. <Property Name="MI20" Type="float" />
  48. <Property Name="MI21" Type="nvarchar" MaxLength="255" />
  49. <Property Name="MI22" Type="float" />
  50. <Property Name="MI23" Type="float" />
  51. <Property Name="MI31" Type="nvarchar" MaxLength="255" />
  52. <Property Name="MI33" Type="nvarchar" MaxLength="255" />
  53. <Property Name="INSAGM" Type="nvarchar" MaxLength="255" />
  54. <Property Name="MARAGM" Type="nvarchar" MaxLength="255" />
  55. </EntityType>-->
  56. </Schema>