annotate Demo/Silverlight/Client.Web/DataModel.tt @ 5:f7d63a092920
Исправлено условие Where в тех случаях, когда репозитарий не является генериком
author |
cin |
date |
Tue, 10 Mar 2015 16:02:11 +0300 |
parents |
f990fcb411a9 |
children |
|
rev |
line source |
0
|
1 <#@ template debug="True" hostspecific="True" #>
|
|
2 <#@ output extension=".generated.cs" #>
|
|
3 <#@ include file="$(SolutionDir)\Source\Templates\BLToolkit.ttinclude" #>
|
|
4 <#@ include file="$(SolutionDir)\Source\Templates\MSSQL.ttinclude" #>
|
|
5 <#
|
|
6 ConnectionString = "Server=.;Database=Northwind;Integrated Security=SSPI";
|
|
7
|
|
8 Namespace = "Client";
|
|
9 DataContextName = "DataModel";
|
|
10
|
|
11 Usings.Add("BLToolkit.ServiceModel");
|
|
12 Usings.Add("System.ServiceModel");
|
|
13
|
|
14 GenerateModel();
|
|
15 #>
|