Mercurial > pub > bltoolkit
comparison Demo/WebServices/NorthwindDataService/Web.config @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f990fcb411a9 |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <configuration> | |
3 <connectionStrings> | |
4 <add name="Northwind" | |
5 connectionString = "Data Source=.;Database=Northwind;Integrated Security=SSPI" | |
6 providerName = "System.Data.SqlClient" /> | |
7 <add name="NorthwindEntities" | |
8 connectionString = "metadata=res://*/NorthwindModel.csdl|res://*/NorthwindModel.ssdl|res://*/NorthwindModel.msl;provider=System.Data.SqlClient;provider connection string="data source=DADDY;initial catalog=Northwind;integrated security=True;multipleactiveresultsets=True;App=EntityFramework"" | |
9 providerName = "System.Data.EntityClient" /> | |
10 </connectionStrings> | |
11 | |
12 <system.web> | |
13 <compilation debug="true" targetFramework="4.0"> | |
14 <assemblies> | |
15 <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> | |
16 </assemblies> | |
17 </compilation> | |
18 </system.web> | |
19 | |
20 <system.webServer> | |
21 <modules runAllManagedModulesForAllRequests="true" /> | |
22 </system.webServer> | |
23 <system.serviceModel> | |
24 <serviceHostingEnvironment aspNetCompatibilityEnabled="true" /> | |
25 </system.serviceModel> | |
26 </configuration> |