-
Re: Latest beta too slow while typing
Perhaps the issue is connection related.. could you set the connection to <None> and check again? (View Post) -
Re: Translation of a Sql Statement to Linq
First, get rid of the multiple references to the table bedarf. This will make the query much simpler. Example:SELECT Teilenr, ISNULL(SUM(CASE WHEN kz = 'B' THEN Menge END) - SUM(CASE WHEN kz = 'D' TH… (View Post) -
Re: LinqPad recognises the database but not the table
Check the casing of the column name as C# is case sensitive.. also the equality operator for c# is == (View Post) -
Re: Reason Core Security marks query_xxxxx.dll as Potentially Unwanted Extension
Seems unlikely as these files are part of the regular query execution of LINQPad. UserQueries are first compiled to %TEMP%\LINQPad5\_xxxxx\query_xxxxx.dll and then executed. However, there's always a… (View Post) -
Re: New LinqPad user help.
How about applying the mentioned fix first and then running it through the converter? (Also, the data you posted is missing the necessary xml markup) Edit: It's great to start with "a simple que… (View Post)