Getting Invalid Column Name 'Created'
See original GitHub issueI have verified that the column exists and is set up in SSMS correctly. I have full functions of adminUI connected to an existing identity server, with this exception. I cannot edit or delete Clients from the adminUI without getting an error ==> Invalid Column Name ‘Created’
ConfigurationController.cs ` [HttpGet] [Route(“[controller]/[action]”)] [Route(“[controller]/[action]/{id:int}”)] public async Task<IActionResult> Client(int id) { if (id == 0) { var clientDto = _clientService.BuildClientViewModel(); return View(clientDto); }
var client = await _clientService.GetClientAsync(id);
client = _clientService.BuildClientViewModel(client);
return View(client);
}
`
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
SQL Server: Invalid Column Name
Whenever this happens to me, I press Ctrl + Shift + R which refreshes intellisense , close the query window (save if necessary), ......
Read more >Invalid Column Name SQL: How to Use Columns Properly
An invalid column name error in SQL means that the column name violates the conditions of the column name. If you reference an...
Read more >Why is this query throwing an "Invalid Column Name" error?
If the field [ParameterName] is the value "StaffTablesRefreshed" , then set the value of [ParameterValue] to "1" . When executed, SQL Server ...
Read more >I don't understand why I'm getting an "invalid column name" ...
I'm trying to create a stored proc using both a function and a view. I'm getting an "invalid column name" error on 2...
Read more >How to fix invalid 'Invalid column name' after adding a ...
How to fix invalid 'Invalid column name' after adding a column in the table · Remove columns from the entity that the platform...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Solved: I had an existing identity server, with custom schema, and not all the tables had the columns the adminUI was expecting. Needed to add a ‘Created’ column in ClientSecrets and ApiSecrets, but was able to get everything up and running.
Thanks for the help!
Thanks for your feedback.