Skip to content

development

How to create .gitignore

While working on your projects, you will often find many ignore files and directories (like .env or any other local environment secrets, .vscode or any different IDE configurations, .DS_store MacOS related, .eslintrc, .csslintrc, node_modules/ and the list goes on ) that you have to add… Read More »How to create .gitignore

Resolved: The specified type member ‘Date’ is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.

I come across the following error while comparing Date in Linq lambda in the .NET C# project. The exact error is The specified type member ‘Date’ is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported. My code… Read More »Resolved: The specified type member ‘Date’ is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.