Hi..
I'm using ADO Entity Framework and displaying information in a GridView...
But I have a problem...
This is the code I use to obtain information:
note: CF_Actividad is my table.
well, ACT_Clave column has an alias, when this alias contains a dot(.), the information in this column is not displayed..
However, the information in the column description, if displayed.
The problem is when has a dot in the alias..
Thanks!!
I'm using ADO Entity Framework and displaying information in a GridView...
But I have a problem...
This is the code I use to obtain information:
radGridView1.DataSource = context.CF_Actividad.Select(
"it.ACT_Clave as [clave.clave], it.ACT_Descripcion").Execute(System.Data.Objects.MergeOption.OverwriteChanges);
note: CF_Actividad is my table.
well, ACT_Clave column has an alias, when this alias contains a dot(.), the information in this column is not displayed..
However, the information in the column description, if displayed.
The problem is when has a dot in the alias..
Thanks!!