Hi everyone, I have a little problem with Linqpad with a badly configured database
Firstly, I have a database where the creator has tables with a column with a name similar to the table that he uses as a support field.
In addition to this, these tables have Content and Value columns.
After experimenting with this, if the table has a column with a name similar to the table, it renames the column to Content, and then Value if it has a column name similarly named.
if I try to execute the query (below), I will lose the column with the same column name as the table. Does anyone know of a method to get around this. as it makes using linqpad impossible, as it is noticeable in all the database tables that i'm currently using?
Example below
if I have

CREATE TABLE [dbo].[TestTable](
[TestTableID] [int] NOT NULL,
[TestTable] [varchar](max) NULL,
[Content] [varchar](max) NULL,
[Value] [varchar](max) NULL
)

As you can see im is missing
source
share