-
Re: Opening dbs with large designs
You can create a typed data context in Visual Studio and then consume that in Visual Studio. You can use either LINQ to SQL or Entity Framework. After creating your data context in VS, compile the as…1 · -
Re: Linqpad 5 upgrades
The first LINQPad 5 beta is likely to be available within a few weeks. The current offer is as good as it will get.1 · -
Re: Integrating LinqPad library from nuget into .net application
So you want to reference LINQPad from a Visual Studio project, and ask it to execute scripts? If so, you can do this simply by referencing LINQPad.exe from your VS project and calling LINQPad.Util.Ru…1 · -
Re: My Addin API Wishlist
Thanks, this is useful feedback. Right now all resources are going into the new language and completion engine, but after that will be time for evaluating new features.1 · -
Re: receiving strongly-typed results from other scripts?
You can also have the query that you call return a value, like this: DateTime Main () { return DateTime.Now; } and then get to it from another query as follows: (DateTime) Util.Compile ("myquery…3 ·