I’m trying to make query in a table that has a column named “First Name”
dim info = from md in employees _
where md!first name = "test"
How can I use the field “first name” in this query.
I’ve tried \”first name\” and “”first name”” but neither works.
Identifiers can’t contain spaces in VB. The designer, I think, removes the spaces from the name when creating the entity class so it would simply be
FirstName.