annotate Source/Templates/BLT4Toolkit.ttinclude @ 1:8f65451dc28f
 
Исправлена проблема с фабрикой и выборкой нескольких объектов в linq выражении
 | author | cin | 
 | date | Fri, 28 Mar 2014 01:04:56 +0400 | 
 | parents | f990fcb411a9 | 
 | children |  | 
 | rev | line source | 
  
| 0 | 1 <#@ include file="T4Toolbox.tt" #> | 
|  | 2 <# | 
|  | 3 | 
|  | 4 	var customToolNamespace = TransformationContext.FindProjectItem(Host.TemplateFile).Properties.Item("CustomToolNamespace").Value; | 
|  | 5 | 
|  | 6 	if (customToolNamespace != null) | 
|  | 7 		Namespace = customToolNamespace.ToString(); | 
|  | 8 | 
|  | 9 	if (string.IsNullOrEmpty(Namespace)) | 
|  | 10 		Namespace = TransformationContext.DefaultNamespace; | 
|  | 11 | 
|  | 12 	if (string.IsNullOrEmpty(DataContextName)) | 
|  | 13 		DataContextName = System.IO.Path.GetFileNameWithoutExtension(Host.TemplateFile); | 
|  | 14 | 
|  | 15 #> |