vote up 2 vote down star

Hi,

I have the following code and it is giving related to curly braces and stuff.

<#@ template language="C#" debug="True" hostspecific="True" #>
<#@ output extension=".cs" #>
<#@ assembly name="System.Data" #>

<#@ assembly name="System.xml" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="System.Data.SqlClient" #>

namespace MyProject.Entities 
{   
    public class     
    {
        <#
        string connectionString = 
            "Server=localhost;Database=GridViewGuy;Trusted_Connection=true"; 
        SqlConnection conn = new SqlConnection(connectionString); 
        conn.Open(); 
        System.Data.DataTable schema = conn.GetSchema("TABLES"); 

        foreach(System.Data.DataRow row in schema.Rows) 
        { 

        #> 

        public class <#= row["TABLE_NAME"].ToString() #>            


        {

        }               

        } 

    }   

}

Can anyone spot the problem?

flag

45% accept rate

2 Answers

vote up 3 vote down check

The reason why it is not compiling is because you don't have a corresponding closing brace for the foreach block inside <# #> tags. You need to make the following change:

foreach(System.Data.DataRow row in schema.Rows)                 
{                 
#>                 
  public class <#= row["TABLE_NAME"].ToString()#> 
  {                
  } 
<#
  } //this was missing.
#>

Additionally, keep in mind that your code will create a class with no name followed by a list of nested classes with the names of your tables. Like this:

public class
{
  public class Table1
  {
  }

  public class Table2
  {
  }
  //... and so on..
}

This may not be what you are trying to accomplish.

link|flag
Thanks man that was really helpful! – azamsharp May 11 at 3:21
You should install the Tangible T4 editor plugin for Visual Studio. It will give you matching brace highlighting that makes this sort of thing really easy to figure out. visualstudiogallery.msdn.microsoft.com/en-us/… – Mel Jun 18 at 12:14
Tangible is cool until you realize the intellisense is slow and spotty at best, and you can't insert a breakpoint into the template. – Chad Ruppert Jun 26 at 16:29
vote up 2 vote down

In your first block, you start a code block

            foreach(System.Data.DataRow row in schema.Rows) 
            { 

            #>

but never terminate it. Somewhere below you need this:

            <# } #>

edit - it looks like it would be the closing curly brace just below the nested class definition

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.