Settings and activity
10 results found
-
11 votesShlomi supported this idea ·
An error occurred while saving the comment -
1 vote
An error occurred while saving the comment Shlomi commentedHave you considered?
Shlomi shared this idea · -
73 votes
An error occurred while saving the comment Shlomi commentedOne advantages of REPL would be when sometimes you want to change DB connection context without loosing the memory, i.e. query a DB then use that information to query a different one.
This can be also achieved if we could use multiple contexts objects instead of 'this' (without the feature of adding additional DB's to the same context).
-
129 votes
An error occurred while saving the comment Shlomi commentedHallur - nice idea :) tnx
An error occurred while saving the comment Shlomi commentedHi Bill,
If you want I've created a small snippet for TransactionScope - 'tscope':
(can used also as surround-with)<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>TransactionScope</Title>
<Shortcut>tscope</Shortcut>
<Description></Description>
<Author>Shlomi</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
<SnippetType>SurroundsWith</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Code Language="csharp"><![CDATA[using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required,
new TransactionOptions { IsolationLevel = System.Transactions.IsolationLevel.ReadUncommitted }))
{
$selected$ $end$
}]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>Shlomi shared this idea · -
21 votesShlomi shared this idea ·
-
1 vote
An error occurred while saving the comment Shlomi commentedAfter playing with Cache() - I have to say that it is quite dangerous in some cases. The fact that it is not parameters sensitive might be very misleading and give wrong results because of the cache.
I know that I should know what I'm doing when using it, but sometimes you forget and get burned.For your consideration.
Shlomi shared this idea · -
52 votesShlomi shared this idea ·
-
21 votes
An error occurred while saving the comment Shlomi commentedJohn - thanks!
An error occurred while saving the comment Shlomi commentedMy vote here.
an option to add a folder link to 'My Queries' could be useful for shared directories. -
847 votes
-
338 votes
This is actually a great idea..
For example - my dev workstation is in another continents than our Production servers and DB. When running a big script with lot's of queries roundtrips - the latency is a real issue! (in SaveChanges - every update/insert is a full roundtrip!).
Instead of packaging all the dll's and configurations and running the queries on a Production machine, this feature request would just solve it.