-
Re: how can I filter a list that is being returned by a stored procedure?
Don't know if there is a better way, but I have used AsDynamic() eg on the Northwind sample SalesbyYear(new DateTime(1900,1,1), DateTime.Now) .AsDynamic() .Where(a=>a.Subtotal > 10000) .Du…2 · -
Re: SqlConnection not working in LinqPad 7
You need to add System.Data.SqlClient to your F4 NameSpace Imports as this is now longer added by default.1 · -
Re: VirusTotal has 5 hits
Have they downloaded the wrong program? As far as I know Linqer has nothing to do with LinqPad, so you are unlikely to get an authoritative answer here and it might be better to ask at https://sqltol…2 · -
Re: How can i extend a class that represents a table in a database with a few in-memory properties?
There are probably several ways of doing this and it depends on how much work you want to do upfront. It is quite a bit of work, but if the schema is unlikely to change, you could create your own typ…2 · -
Re: Global ToDump hook is not working
I would guess you have all this in your main query. The static object ToDump(object input) method needs to be in "My Extensions" and because it references Customer, that class has to be def…1 ·