Guest User

Untitled

a guest
Jun 21st, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1. <EntityType Name="districts">
  2. <Key>
  3. <PropertyRef Name="gid" />
  4. </Key>
  5. <Property Name="gid" Type="int4" StoreGeneratedPattern="Identity" Nullable="false" />
  6. <Property Name="area" Type="float8" />
  7. <Property Name="perimeter" Type="float8" />
  8. <Property Name="district_" Type="float8" />
  9. <Property Name="district_i" Type="float8" />
  10. <Property Name="ecodistric" Type="int2" />
  11. <Property Name="ecoregion" Type="int2" />
  12. <Property Name="region_pol" Type="int2" />
  13. </EntityType>
  14.  
  15. <EntityType Name="Regulations">
  16. <Key>
  17. <PropertyRef Name="id" />
  18. </Key>
  19. <Property Name="id" Type="int4" Nullable="false" />
  20. <Property Name="SESData_id" Type="int4" Nullable="false" />
  21. </EntityType>
  22.  
  23. <connectionStrings>
  24. <add name="DefaultConnection"
  25. connectionString="Data Source=(LocalDb)MSSQLLocalDB;AttachDbFilename=|DataDirectory|aspnet-SESApplication-20180618014056.mdf;Initial Catalog=aspnet-SESApplication-20180618014056;Integrated Security=True"
  26. providerName="System.Data.SqlClient" />
  27. <add name="SESDatabaseEntities"
  28. connectionString="metadata=res://*/SESPGDataModel.csdl|res://*/SESPGDataModel.ssdl|res://*/SESPGDataModel.msl;provider=Npgsql;provider connection string="Host=localhost;Database=SESDatabase;Username=postgres;Password=postgres3yp2j032#""
  29. providerName="System.Data.EntityClient" />
  30. </connectionStrings>
  31. <appSettings>
  32. <add key="webpages:Version" value="3.0.0.0" />
  33. <add key="webpages:Enabled" value="false" />
  34. <add key="ClientValidationEnabled" value="true" />
  35. <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  36. </appSettings>
  37. <system.web>
  38. <authentication mode="None" />
  39. <compilation debug="true" targetFramework="4.5.2" />
  40. <httpRuntime targetFramework="4.5.2" />
  41. </system.web>
  42. <system.webServer>
  43. <modules>
  44. <remove name="FormsAuthentication" />
  45. </modules>
  46. </system.webServer>
  47. ....
  48. <entityFramework>
  49. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  50. <parameters>
  51. <parameter value="mssqllocaldb" />
  52. </parameters>
  53. </defaultConnectionFactory>
  54. <providers>
  55. <provider invariantName="System.Data.SqlClient"
  56. type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  57. <provider invariantName="Npgsql"
  58. type="Npgsql.NpgsqlServices, EntityFramework6.Npgsql" />
  59. </providers>
  60. </entityFramework>
  61. <system.codedom>
  62. <compilers>
  63. <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
  64. <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE="Web" /optionInfer+" />
  65. </compilers>
  66. </system.codedom>
Add Comment
Please, Sign In to add comment