Settings and activity
12 results found
-
129 votes
An error occurred while saving the comment -
0 votes
An error occurred while saving the comment Dave Shaw commentedThere is an option already - File, Upload to Instant Share (Ctrl + Shift + U)
-
248 votesDave Shaw supported this idea ·
-
1 vote
An error occurred while saving the comment Dave Shaw commentedNo! This is how all .net Application Configuration Files are named. See http://msdn.microsoft.com/en-us/library/1xtk877y for more info.
-
23 votes
An error occurred while saving the comment Dave Shaw commentedI've not tried, but could you write a "My Extension" that allows you to call "CheckOut(Util.CurrentQueryPath);" and check out the current file using the TFI API?
-
31 votesDave Shaw supported this idea ·
-
9 votesDave Shaw supported this idea ·
-
92 votes
An error occurred while saving the comment Dave Shaw commentedI currently save queries and Mark them as "Templates" and at the top of the Query put "\\Clone Me". I then open them and "Clone" the Query before I do any work.
Dave Shaw supported this idea · -
11 votes
An error occurred while saving the comment Dave Shaw commentedThe title should say "Shift F1", but was truncated.
Dave Shaw shared this idea · -
12 votes
An error occurred while saving the comment Dave Shaw commentedI agree with Peter, as I use LinqPad to query our production servers and would rather not connect to them until I need to.
Dave Shaw supported this idea · -
9 votes
An error occurred while saving the comment Dave Shaw commentedI already do this with LinqPad all the time. Just use the XDocument classes.
-
3 votes
An error occurred while saving the comment Dave Shaw commentedYou could create your own like this:
void ConfirmSubmitChanges()
{
if (MessageBox.Show("Save?", "Save?", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
SubmitChanges();
}
"When I change the TransactionScope, should the generated SQL have "WITH (NOLOCK)"??"
No, transaction isolation levels work differently, they do not cause the code generators to query hints, they are just set on the current connection.