Skip to content
Advertisement

How do I get a space in my property name?

I have the following query:

The problem is that I make the property ProjeAdı in the Select clause. I want the property to match the sql column, Proje Adı (note the space). How can I do that?

Advertisement

Answer

aliases cant have spaces between them , just like any variable name cant have white space, they are considered as bad naming conventions, you can use _(underscore) eg. Proje_Adi

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement