Home

ExecuteQueryDynamic method not found

I am using LinqPad 8.0.7 and trying to run the Dynamic Querying (LINQ to SQL) example. I connected to the Chinook Demo DB SQLite sample database included with the application and hit the Execute button. I receive a message "CS0103 The name 'ExecuteQueryDynamic' does not exist in the current context". Do I need to include a namespace or other reference to run this sample?

Comments

  • The ExecuteQueryDynamic method works only with LINQ-to-SQL, which does not support SQLite.

    The SQLite sample database uses EF Core. There are probably dynamic querying options built into EF Core - I've not really looked.

Sign In or Register to comment.