User Scott Nichols - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T05:32:31Zhttp://stackoverflow.com/feeds/user/4299http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/42200/managing-linq-to-sql-dbml-model-complexity4Managing LINQ to SQL .dbml model complexityScott Nichols2008-09-03T17:46:50Z2009-08-12T14:41:41Z
<p>This question is addressed to a degree in this question on <a href="http://beta.stackoverflow.com/questions/33664/best-practices-for-managing-linq-to-sql-dbml-files" rel="nofollow">LINQ to SQL .dbml best practices</a>, but I am not sure how to add to a question.</p>
<p>One of our applications uses LINQ to SQL and we have currently have one .dbml file for the entire database which is becoming difficult to manage. We are looking at refactoring it a bit into separate files that are more module/functionality specific, but one problem is that many of the high level classes would have to be duplicated in several .dbml files as the associations can't be used across .dbml files (as far as I know), with the additional partial class code as well.</p>
<p>Has anyone grappled with this problem and what recommendations would you make?</p>
http://stackoverflow.com/questions/159704/how-to-implement-custom-json-serialization-from-asp-net-web-service5How to implement custom JSON serialization from ASP.NET web service?Scott Nichols2008-10-01T20:58:35Z2009-06-01T05:31:15Z
<p>What options are there for serialization when returning instances of custom classes from a WebService?</p>
<p>We have some classes with a number of child collection class properties as well as other properties that may or may not be set depending on usage. These objects are returned from an ASP.NET .asmx WebService decorated with the ScriptService attribute, so are serialized via JSON serialization when returned by the various WebMethods.</p>
<p>The problem is that the out of the box serialization returns all public properties, regardless of whether or not they are used, as well as returning class name and other information in a more verbose manner than would be desired if you wanted to limit the amount of traffic.</p>
<p>Currently, for the classes being returned we have added custom javascript converters that handle the JSON serializtion, and added them to the web.config as below:</p>
<pre><code><system.web.extensions>
<scripting>
<webServices>
<jsonSerialization>
<converters>
<add name="CustomClassConverter" type="Namespace.CustomClassConverter" />
</converters>
</jsonSerialization>
</webServices>
</scripting>
</system.web.extensions>
</code></pre>
<p>But this requires a custom converter for each class. Is there any other way to change the out of the box JSON serialization, either through extending the service, creating a custom serializer or the like?</p>
<p><b>Follow Up</b><br />
@<a href="#159811" rel="nofollow">marxidad</a>:</p>
<p>We are using the DataContractJsonSerializer class in other applications, however I have been unable to figure out how to apply it to these services. Here's an example of how the services are set-up:</p>
<pre><code>[ScriptService]
public class MyService : System.Web.Services.WebService
{
[WebMethod]
public CustomClass GetCustomClassMethod
{
return new customClass();
}
}
</code></pre>
<p>The WebMethods are called by javascript and return data serialized in JSON. The only method we have been able to change the serialization is to use the javascript converters as referenced above? </p>
<p>Is there a way to tell the WebService to use a custom DataContractJsonSerializer? Whether it be by web.config configuration, decorating the service with attributes, etc.? </p>
<p><b>Update</b><br />
Well, we couldn't find any way to switch the out of the box JavaScriptSerializer except for creating individual JavaScriptConverters as above.</p>
<p>What we did on that end to prevent having to create a separate converter was create a generic JavaScriptConverter. We added an empty interface to the classes we wanted handled and the SupportedTypes which is called on web-service start-up uses reflection to find any types that implement the interface kind of like this:</p>
<pre><code>public override IEnumerable<Type> SupportedTypes
{
get
{
foreach (Assembly assembly in AppDomain.CurrentDomain.GetAssemblies())
{
AssemblyBuilder dynamicAssemblyCheck = assembly as AssemblyBuilder;
if (dynamicAssemblyCheck == null)
{
foreach (Type type in assembly.GetExportedTypes())
{
if (typeof(ICustomClass).IsAssignableFrom(type))
{
yield return type;
}
}
}
}
}
}
</code></pre>
<p>The actual implementation is a bit different so that the type are cached, and we will likely refactor it to use custom attributes rather than an empty interface.</p>
<p>However with this, we ran into a slightly different problem when dealing with custom collections. These typically just extend a generic list, but the custom classes are used instead of the List<> itself because there is generally custom logic, sorting etc. in the collection classes.</p>
<p>The problem is that the Serialize method for a JavaScriptConverter returns a dictionary which is serialized into JSON as name value pairs with the associated type, whereas a list is returned as an array. So the collection classes could not be easily serialized using the converter. The solution for this was to just not include those types in the converter's SupportedTypes and they serialize perfectly as lists.</p>
<p>So, serialization works, but when you try to pass these objects the other way as a parameter for a web service call, the deserialization breaks, because they can't be the input is treated as a list of string/object dictionaries, which can't be converted to a list of whatever custom class the collection contains. The only way we could find to deal with this is to create a generic class that is a list of string/object dictionaries which then converts the list to the appropriate custom collection class, and then changing any web service parameters to use the generic class instead.</p>
<p>I'm sure there are tons of issues and violations of "best practices" here, but it gets the job done for us without creating a ton of custom converter classes.</p>
http://stackoverflow.com/questions/706659/asp-net-2-0-need-to-programmatically-click-a-link/706810#7068100Answer by Scott Nichols for ASP.NET 2.0 - Need to programmatically click a linkScott Nichols2009-04-01T18:30:35Z2009-04-01T18:30:35Z<p>Rashack's post show's how to do it. You can just do it in javascript.</p>
<pre><code>
function ClickLink() {
document.getElementById('').click();
}
</code></pre>
<p>If you want this to fire after some other event, you can add code in c# to add a call to that function on the client side when the page loads.</p>
<pre><code>
Page.ClientScript.RegisterStartupScript(
this.getType(),
"clickLink",
"ClickLink();",
true);
</code></pre>
http://stackoverflow.com/questions/97193/can-i-get-calling-instance-from-within-method-via-reflection-diagnostics1Can I get calling instance from within method via reflection/diagnostics?Scott Nichols2008-09-18T21:29:45Z2008-11-21T16:03:03Z
<p>Is there any way via System.Reflection, System.Diagnostics or other to get a reference to the actual instance that is calling a static method without passing it in to the method itself.</p>
<p>For example, something along these lines</p>
<pre><code>class A
{
public void DoSomething()
{
StaticClass.ExecuteMethod();
}
}
class B
{
public void DoSomething()
{
SomeOtherClass.ExecuteMethod();
}
}
public class SomeOtherClass
{
public static void ExecuteMethod()
{
// returns an instance of A if called from class A
// or an instance of B if called from class B
object caller = getCallingInstance();
}
}
</code></pre>
<p>I can get the type using System.Diagnostics.StackTrace.GetFrames, but is there any way to get a reference to the actual instance??</p>
<p>EDIT:<br />
I am aware of the issues with reflection and performance, as well as static to static calls, and that this is generally, perhaps even almost univerally, not the right way to approach this. Part of the reason question is I was curious if it was doable, we are currently passing the instance in. </p>
<pre><code>ExecuteMethod(instance)
</code></pre>
<p>and just wondered if this was possible and still being able to access the instance.</p>
<pre><code>ExecuteMethod()
</code></pre>
<p>@<a href="#97315" rel="nofollow">Steve Cooper</a>:
I hadn't considered extension methods. Some variation of that might work. I'll play around with that a bit.</p>
http://stackoverflow.com/questions/154204/modifying-default-tab-size-in-richtextbox/154255#1542553Answer by Scott Nichols for Modifying default tab size in RichTextBoxScott Nichols2008-09-30T18:09:37Z2008-09-30T19:59:01Z<p>You can set it by setting the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.richtextbox.selectiontabs.aspx" rel="nofollow">SelectionTabs</a> property.</p>
<pre><code>private void Form1_Load(object sender, EventArgs e)
{
richTextBox1.SelectionTabs = new int[] { 100, 200, 300, 400 };
}
</code></pre>
<p>UPDATE:<br />
The sequence matters....</p>
<p>If you set the tabs prior to the control's text being initialized, then you don't have to select the text prior to setting the tabs. </p>
<p>For example, in the above code, this will keep the text with the original 8 spaces tab stops:</p>
<pre><code>richTextBox1.Text = "\t1\t2\t3\t4";
richTextBox1.SelectionTabs = new int[] { 100, 200, 300, 400 };
</code></pre>
<p>But this will use the new ones:</p>
<pre><code>richTextBox1.SelectionTabs = new int[] { 100, 200, 300, 400 };
richTextBox1.Text = "\t1\t2\t3\t4";
</code></pre>
http://stackoverflow.com/questions/153776/how-can-i-call-a-javascript-function-from-inside-a-method/153873#1538734Answer by Scott Nichols for How can I call a javascript function from inside a method?Scott Nichols2008-09-30T16:32:23Z2008-09-30T17:20:55Z<p>I'm not sure I fully understand the sequence of what you are trying to do, what's client-side and what's not....</p>
<p>However, you could add a Start-up javascript method to the page which would then call the WebMethod. When calling a WebMethod via javascript, you can add a call-back function, which would then be called when the WebMethod returns.</p>
<p>If you add a ScriptManager tag on your page, you can call WebMethods defined in the page via Javascript. </p>
<pre><code><asp:ScriptManager ID="scriptManager1"
runat="server" EnablePageMethods="true" />
</code></pre>
<p>From the Page_Load function you can add a call to your WebMethod..</p>
<pre><code>Page.ClientScript.RegisterStartupScript(
this.GetType(),
"callDoSome",
"PageMethods.DoSome(Callback_Function, null)",
true);
</code></pre>
<p>Callback_Function represents a javascript function that will be executed after the WebMethod is called... </p>
<pre><code><script language="javascript" type="text/javascript">
function Callback_Function(result, context) {
alert('WebMethod was called');
}
</script>
</code></pre>
<p><b>EDIT:</b></p>
<p>Found this link for <a href="http://edndoc.esri.com/arcobjects/9.2/NET_Server_Doc/developer/ADF/custom_tools_commands.htm" rel="nofollow">Web ADF controls</a>. Is this what you are using??</p>
<p>From that page, it looks like something like this will do a javascript callback.</p>
<pre><code>public void ServerAction(ToolbarItemInfo info) {
string jsfunction = "alert('Hello');";
Map mapctrl = (Map)info.BuddyControls[0];
CallbackResult cr = new CallbackResult(null, null, "javascript", jsfunction);
mapctrl.CallbackResults.Add(cr);
}
</code></pre>
http://stackoverflow.com/questions/153776/how-can-i-call-a-javascript-function-from-inside-a-method/154022#1540221Answer by Scott Nichols for How can I call a javascript function from inside a method?Scott Nichols2008-09-30T17:05:37Z2008-09-30T17:05:37Z<p>If the above is how you are calling RegisterStartupScript, it won't work because you don't have a reference to the "Page" object. </p>
<p>bgchange in your example extends Object (assuming IMapServerDropDownBoxAction is an interface), which means that there is no Page instance for you to reference.</p>
<p>This you did the exact same thing from a Asp.Net Page or UserControl, it would work, because Page would be a valid reference.</p>
<pre><code>public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Page.ClientScript.RegisterStartupScript(
this.GetType(),
"helloworldpopup",
"alert('hello world');",
true);
}
}
</code></pre>
http://stackoverflow.com/questions/128277/linq-custom-column-names/128907#1289078Answer by Scott Nichols for LINQ: custom column namesScott Nichols2008-09-24T18:26:49Z2008-09-24T18:35:21Z<p>If you want to change the header text, you can set that in the GridView definition...</p>
<pre><code><asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false">
<Columns>
<asp:BoundField DataField="FirstName" HeaderText="First Name" />
</Columns>
</asp:GridView>
</code></pre>
<p>In the code behind you can bind to the users and it will set the header to First Name.</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
// initialize db datacontext
var query = from u in db.Users
select u;
GridView1.DataSource = query;
GridView1.DataBind();
}
</code></pre>
http://stackoverflow.com/questions/128277/linq-custom-column-names/128391#1283916Answer by Scott Nichols for LINQ: custom column namesScott Nichols2008-09-24T17:03:51Z2008-09-24T17:03:51Z<p>As CQ states, you can't have a space for the field name, you can return new columns however.</p>
<pre><code>var query = from u in db.Users
select new
{
FirstName = u.FirstName,
LastName = u.LastName,
FullName = u.FirstName + " " + u.LastName
};
</code></pre>
<p>Then you can bind to the variable query from above or loop through it whatever....</p>
<pre><code>foreach (var u in query)
{
// Full name will be available now
Debug.Print(u.FullName);
}
</code></pre>
<p>If you wanted to rename the columns, you could, but spaces wouldn't be allowed.</p>
<pre><code>var query = from u in db.Users
select new
{
First = u.FirstName,
Last = u.LastName
};
</code></pre>
<p>Would rename the FirstName to First and LastName to Last.</p>
http://stackoverflow.com/questions/122942/how-to-return-multiple-values-in-one-column-t-sql/123025#12302510Answer by Scott Nichols for How to return multiple values in one column (T-SQL)?Scott Nichols2008-09-23T18:56:29Z2008-09-23T18:56:29Z<p>You can use a function with COALESCE.</p>
<pre><code>CREATE FUNCTION [dbo].[GetAliasesById]
(
@userID int
)
RETURNS varchar(max)
AS
BEGIN
declare @output varchar(max)
select @output = COALESCE(@output + ', ', '') + alias
from UserAliases
where userid = @userID
return @output
END
GO
SELECT UserID, dbo.GetAliasesByID(UserID)
FROM UserAliases
GROUP BY UserID
GO
</code></pre>
http://stackoverflow.com/questions/106206/fastest-way-to-remove-non-numeric-characters-from-a-varchar-in-sql-server/106226#1062263Answer by Scott Nichols for Fastest way to remove non-numeric characters from a VARCHAR in SQL ServerScott Nichols2008-09-19T22:46:41Z2008-09-19T23:01:48Z<p>I may misunderstand, but you've got two sets of data to remove the strings from one for current data in the database and then a new set whenever you import.</p>
<p>For updating the existing records, I would just use SQL, that only has to happen once.</p>
<p>However, SQL isn't optimized for this sort of operation, since you said you are writing an import utility, I would do those updates in the context of the import utility itself, not in SQL. This would be much better performance wise. What are you writing the utility in?</p>
<p>Also, I may be completely misunderstanding the process, so I apologize if off-base.</p>
<p><b>Edit: </b><br />
For the initial update, if you are using SQL Server 2005, you could try a CLR function. Here's a quick one using regex. Not sure how the performance would compare, I've never used this myself except for a quick test right now.</p>
<pre><code>using System;
using System.Data;
using System.Text.RegularExpressions;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;
public partial class UserDefinedFunctions
{
[Microsoft.SqlServer.Server.SqlFunction]
public static SqlString StripNonNumeric(SqlString input)
{
Regex regEx = new Regex(@"\D");
return regEx.Replace(input.Value, "");
}
};
</code></pre>
<p>After this is deployed, to update you could just use:</p>
<pre><code>UPDATE table SET phoneNumber = dbo.StripNonNumeric(phoneNumber)
</code></pre>
http://stackoverflow.com/questions/103725/is-there-a-way-to-programatically-determine-if-a-font-file-has-a-specific-unicode/103858#1038583Answer by Scott Nichols for Is there a way to programatically determine if a font file has a specific Unicode Glyph?Scott Nichols2008-09-19T17:22:52Z2008-09-19T22:31:29Z<p>Here's a pass at it using c# and the windows api.</p>
<pre><code>[DllImport("gdi32.dll")]
public static extern uint GetFontUnicodeRanges(IntPtr hdc, IntPtr lpgs);
[DllImport("gdi32.dll")]
public extern static IntPtr SelectObject(IntPtr hDC, IntPtr hObject);
public struct FontRange
{
public UInt16 Low;
public UInt16 High;
}
public List<FontRange> GetUnicodeRangesForFont(Font font)
{
Graphics g = Graphics.FromHwnd(IntPtr.Zero);
IntPtr hdc = g.GetHdc();
IntPtr hFont = font.ToHfont();
IntPtr old = SelectObject(hdc, hFont);
uint size = GetFontUnicodeRanges(hdc, IntPtr.Zero);
IntPtr glyphSet = Marshal.AllocHGlobal((int)size);
GetFontUnicodeRanges(hdc, glyphSet);
List<FontRange> fontRanges = new List<FontRange>();
int count = Marshal.ReadInt32(glyphSet, 12);
for (int i = 0; i < count; i++)
{
FontRange range = new FontRange();
range.Low = (UInt16)Marshal.ReadInt16(glyphSet, 16 + i * 4);
range.High = (UInt16)(range.Low + Marshal.ReadInt16(glyphSet, 18 + i * 4) - 1);
fontRanges.Add(range);
}
SelectObject(hdc, old);
Marshal.FreeHGlobal(glyphSet);
g.ReleaseHdc(hdc);
g.Dispose();
return fontRanges;
}
public bool CheckIfCharInFont(char character, Font font)
{
UInt16 intval = Convert.ToUInt16(character);
List<FontRange> ranges = GetUnicodeRangesForFont(font);
bool isCharacterPresent = false;
foreach (FontRange range in ranges)
{
if (intval >= range.Low && intval <= range.High)
{
isCharacterPresent = true;
break;
}
}
return isCharacterPresent;
}
</code></pre>
<p>Then, given a char toCheck that you want to check and a Font theFont to test it against...</p>
<pre><code>if (!CheckIfCharInFont(toCheck, theFont) {
// not present
}
</code></pre>
<p>Same code using VB.Net</p>
<pre><code><DllImport("gdi32.dll")> _
Public Shared Function GetFontUnicodeRanges(ByVal hds As IntPtr, ByVal lpgs As IntPtr) As UInteger
End Function
<DllImport("gdi32.dll")> _
Public Shared Function SelectObject(ByVal hDc As IntPtr, ByVal hObject As IntPtr) As IntPtr
End Function
Public Structure FontRange
Public Low As UInt16
Public High As UInt16
End Structure
Public Function GetUnicodeRangesForFont(ByVal font As Font) As List(Of FontRange)
Dim g As Graphics
Dim hdc, hFont, old, glyphSet As IntPtr
Dim size As UInteger
Dim fontRanges As List(Of FontRange)
Dim count As Integer
g = Graphics.FromHwnd(IntPtr.Zero)
hdc = g.GetHdc()
hFont = font.ToHfont()
old = SelectObject(hdc, hFont)
size = GetFontUnicodeRanges(hdc, IntPtr.Zero)
glyphSet = Marshal.AllocHGlobal(CInt(size))
GetFontUnicodeRanges(hdc, glyphSet)
fontRanges = New List(Of FontRange)
count = Marshal.ReadInt32(glyphSet, 12)
For i = 0 To count - 1
Dim range As FontRange = New FontRange
range.Low = Marshal.ReadInt16(glyphSet, 16 + (i * 4))
range.High = range.Low + Marshal.ReadInt16(glyphSet, 18 + (i * 4)) - 1
fontRanges.Add(range)
Next
SelectObject(hdc, old)
Marshal.FreeHGlobal(glyphSet)
g.ReleaseHdc(hdc)
g.Dispose()
Return fontRanges
End Function
Public Function CheckIfCharInFont(ByVal character As Char, ByVal font As Font) As Boolean
Dim intval As UInt16 = Convert.ToUInt16(character)
Dim ranges As List(Of FontRange) = GetUnicodeRangesForFont(font)
Dim isCharacterPresent As Boolean = False
For Each range In ranges
If intval >= range.Low And intval <= range.High Then
isCharacterPresent = True
Exit For
End If
Next range
Return isCharacterPresent
End Function
</code></pre>
http://stackoverflow.com/questions/103298/how-to-convert-a-unmanaged-double-to-a-managed-string/103350#1033501Answer by Scott Nichols for How to convert a unmanaged double to a managed string?Scott Nichols2008-09-19T16:14:30Z2008-09-19T16:41:17Z<p>C++ is definitely not my strongest skillset. Misread the question, but this should convert to a std::string, not exactly what you are looking for though, but leaving it since it was the original post....</p>
<pre><code>double d = 123.45;
std::ostringstream oss;
oss << d;
std::string s = oss.str();
</code></pre>
<p>This should convert to a managed string however..</p>
<pre><code>double d = 123.45
String^ s = System::Convert::ToString(d);
</code></pre>
http://stackoverflow.com/questions/94959/how-do-you-priortize-multiple-triggers-of-a-table/94973#949732Answer by Scott Nichols for How do you priortize multiple triggers of a table?Scott Nichols2008-09-18T17:56:12Z2008-09-18T17:56:12Z<p>Use sp_settriggerorder. You can specify the first and last trigger to fire depending on the operation.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms186762.aspx" rel="nofollow">sp_settriggerorder on MSDN</a></p>
<p>From the above link:<br />
<b>A. Setting the firing order for a DML trigger</b><br />
The following example specifies that trigger uSalesOrderHeader be the first trigger to fire after an UPDATE operation occurs on the Sales.SalesOrderHeader table.</p>
<pre>
USE AdventureWorks;
GO
sp_settriggerorder
@triggername= 'Sales.uSalesOrderHeader',
@order='First',
@stmttype = 'UPDATE';
</pre>
<p><b>B. Setting the firing order for a DDL trigger</b><br />
The following example specifies that trigger ddlDatabaseTriggerLog be the first trigger to fire after an ALTER_TABLE event occurs in the AdventureWorks database.</p>
<pre>
USE AdventureWorks;
GO
sp_settriggerorder
@triggername= 'ddlDatabaseTriggerLog',
@order='First',
@stmttype = 'ALTER_TABLE',
@namespace = 'DATABASE';
</pre>
http://stackoverflow.com/questions/85457/limiting-results-of-system-data-linq-tablet/88605#886050Answer by Scott Nichols for Limiting results of System.Data.Linq.Table<T>Scott Nichols2008-09-17T23:15:32Z2008-09-17T23:15:32Z<p>There are a couple of views we use in associations and they still appear just like any other relationship. We did need to add the associations manually. The only thing I can think to suggest is to take a look at the properties and decorated attributes generated for those classes and associations. </p>
<p>Add a couple tables that have the same relationship and compare those to the view that isn't showing up. </p>
<p>Also, sometimes the refresh on the server explorer connection doesn't seem to work correctly and the entities aren't created correctly initially, unless we remove them from the designer, close the project, then reopen the project and add them again from the server explorer. This is assuming you are using Visual Studio 2008 with the linq to sql .dbml designer.</p>
http://stackoverflow.com/questions/85457/limiting-results-of-system-data-linq-tablet/85989#859892Answer by Scott Nichols for Limiting results of System.Data.Linq.Table<T>Scott Nichols2008-09-17T18:09:58Z2008-09-17T18:09:58Z<p>Another approach would to be use views..</p>
<pre><code>CREATE VIEW ActiveUsers as SELECT * FROM Users WHERE IsDeleted = 0
</code></pre>
<p>As far as linq to sql is concerned, that is just the same as a table. For any table that you needed the DeletedOn filtering, just create a view that uses the filter and use that in place of the table in your data context.</p>
http://stackoverflow.com/questions/85457/limiting-results-of-system-data-linq-tablet/85507#855071Answer by Scott Nichols for Limiting results of System.Data.Linq.Table<T>Scott Nichols2008-09-17T17:15:49Z2008-09-17T18:01:32Z<p>You could use discriminator column inheritance on the table, ie. a DeletedUsers table and ActiveUsers table where the discriminator column says which goes to which. Then in your code, just reference the Users.OfType ActiveUsers, which will never include anything deleted.</p>
<p>As a side note, how the heck do you do this with markdown?</p>
<pre><code>Users.OfType<ActiveUsers>
</code></pre>
<p>I can get it in code, but not inline</p>
http://stackoverflow.com/questions/76724/get-list-of-records-with-multiple-entries-on-the-same-date/76849#768490Answer by Scott Nichols for Get list of records with multiple entries on the same dateScott Nichols2008-09-16T20:45:38Z2008-09-16T20:45:38Z<p>Since you mentioned needing all three records, I am assuming you want the data as well. If you just need the id's, you can just use the group by query. To return the data, just join to that as a subquery</p>
<pre><code>select * from table
inner join (
select id, date
from table
group by id, date
having count(*) > 1) grouped
on table.id = grouped.id and table.date = grouped.date
</code></pre>
http://stackoverflow.com/questions/75943/how-do-you-execute-a-dynamically-loaded-javascript-block/76003#760036Answer by Scott Nichols for How do you execute a dynamically loaded JavaScript block?Scott Nichols2008-09-16T19:27:41Z2008-09-16T19:27:41Z<p>You don't have to use regex if you are using the response to fill a div or something. You can use getElementsByTagName. </p>
<pre><code>div.innerHTML = response;
var scripts = div.getElementsByTagName('script');
for (var ix = 0; ix < scripts.length; ix++) {
eval(scripts[ix].text);
}
</code></pre>
http://stackoverflow.com/questions/57168/how-to-copy-a-row-from-one-sql-server-table-to-another/57188#571889Answer by Scott Nichols for How to copy a row from one SQL Server table to anotherScott Nichols2008-09-11T17:49:36Z2008-09-11T17:49:36Z<p>As long as there are no identity columns you can just</p>
<pre><code>INSERT Table2
SELECT * FROM Table1
WHERE [Conditions]
</code></pre>
http://stackoverflow.com/questions/54334/how-do-i-concatenate-text-in-a-query-in-sql-server/57061#570611Answer by Scott Nichols for How do I concatenate text in a query in sql server?Scott Nichols2008-09-11T16:38:46Z2008-09-11T17:34:21Z<p>If you are using SQL Server 2005 or greater, depending on the size of the data in the Notes field, you may want to consider casting to nvarchar(max) instead of casting to a specific length which could result in string truncation. </p>
<pre><code>Select Cast(notes as nvarchar(max)) + 'SomeText' From NotesTable a
</code></pre>
http://stackoverflow.com/questions/50251/dynamic-linqcreating-an-extension-method-that-produces-json-result/55511#555111Answer by Scott Nichols for Dynamic linq:Creating an extension method that produces JSON resultScott Nichols2008-09-10T23:50:24Z2008-09-10T23:50:24Z<p>This is really ugly and there may be some issues with the string replacement, but it produces the expected results:</p>
<pre><code>public static class JSonify
{
public static string GetJsonTable<T>(
this IQueryable<T> query, int pageNumber, int pageSize, string IDColumnName, string[] columnNames)
{
string select = string.Format("new ({0} as ID, \"CELLSTART\" as CELLSTART, {1}, \"CELLEND\" as CELLEND)", IDColumnName, string.Join(",", columnNames));
var items = new
{
page = pageNumber,
total = query.Count(),
rows = query.Select(select).Skip((pageNumber - 1) * pageSize).Take(pageSize)
};
string json = JavaScriptConvert.SerializeObject(items);
json = json.Replace("\"CELLSTART\":\"CELLSTART\",", "\"cell\":[");
json = json.Replace(",\"CELLEND\":\"CELLEND\"", "]");
foreach (string column in columnNames)
{
json = json.Replace("\"" + column + "\":", "");
}
return json;
}
}
</code></pre>
http://stackoverflow.com/questions/50251/dynamic-linqcreating-an-extension-method-that-produces-json-result/50592#505920Answer by Scott Nichols for Dynamic linq:Creating an extension method that produces JSON resultScott Nichols2008-09-08T20:27:56Z2008-09-08T20:27:56Z<pre><code>static void Main(string[] args)
{
NorthwindDataContext db = new NorthwindDataContext();
var query = db.Customers;
string json = query.GetJsonTable<Customer>(2, 10, "CustomerID", new string[] {"CustomerID", "CompanyName", "City", "Country", "Orders.Count" });
}
public static class JSonify
{
public static string GetJsonTable<T>(
this IQueryable<T> query, int pageNumber, int pageSize, string IDColumnName, string[] columnNames)
{
string select = string.Format("new ({0} as ID, new ({1}) as cell)", IDColumnName, string.Join(",", columnNames));
var items = new
{
page = pageNumber,
total = query.Count(),
rows = query.Select(select).Skip((pageNumber - 1) * pageSize).Take(pageSize)
};
return JavaScriptConvert.SerializeObject(items);
}
}
</code></pre>
http://stackoverflow.com/questions/42550/extract-address-information-from-a-web-page/42600#426001Answer by Scott Nichols for Extract Address Information from a Web PageScott Nichols2008-09-03T21:08:57Z2008-09-03T21:08:57Z<p>What type of address information are you referring to?</p>
<p>There are a couple FireFox plugins <a href="https://addons.mozilla.org/en-US/firefox/addon/4106" rel="nofollow">Operator</a> & <a href="http://blog.codeeg.com/tails-firefox-extension-03/" rel="nofollow">Tails</a> that allow you to extract and view microformats from web pages.</p>
http://stackoverflow.com/questions/42203/sql-number-formating/42224#422244Answer by Scott Nichols for SQL Number FormatingScott Nichols2008-09-03T17:59:23Z2008-09-03T18:14:24Z<p>With TSQL you could cast to money and convert it will add the .00, but you could use replace or substring to remove.</p>
<pre><code>replace(convert(varchar, cast(column as money), 1), '.00', '')
</code></pre>
<p>In SQL 2005 you could use a CLR function as well</p>
<pre><code>[Microsoft.SqlServer.Server.SqlFunction]
public static SqlString FormatNumber(SqlInt32 number)
{
return number.Value.ToString("N0");
}
</code></pre>
<p>and call it as any other user-defined function</p>
<pre><code>SELECT dbo.FormatNumber(value)
</code></pre>
http://stackoverflow.com/questions/36014/why-is-net-exception-not-caught-by-try-catch-block/40828#408281Answer by Scott Nichols for Why is .NET exception not caught by try/catch block?Scott Nichols2008-09-02T22:27:54Z2008-09-02T22:27:54Z<p>I downloaded the sample VS2008 project, and am a bit stumped here too. I was able to get past the exceptions however, although probably not in a way that will work will great for you. But here's what I found:</p>
<p>This <a href="http://www.antlr.org:8080/pipermail/antlr-interest/2008-February/026657.html" rel="nofollow">mailing list post</a> had a discussion of what looks to be the same issue you are experiencing.</p>
<p>From there, I added a couple dummy classes in the main program.cs file:</p>
<pre><code>class MyNoViableAltException : Exception
{
public MyNoViableAltException()
{
}
public MyNoViableAltException(string grammarDecisionDescription, int decisionNumber, int stateNumber, Antlr.Runtime.IIntStream input)
{
}
}
class MyEarlyExitException : Exception
{
public MyEarlyExitException()
{
}
public MyEarlyExitException(int decisionNumber, Antlr.Runtime.IIntStream input)
{
}
}
</code></pre>
<p>and then added the using lines into TimeDefParser.cs and TimeDefLexer.cs:</p>
<pre><code>using NoViableAltException = MyNoViableAltException;
using EarlyExitException = NoViableAltException;
</code></pre>
<p>With that the exceptions would bubble into the fake exception classes and could be handled there, but there was still an exception being thrown in the mTokens method in TimeDefLexer.cs. Wrapping that in a try catch in that class caught the exception:</p>
<pre><code> try
{
alt4 = dfa4.Predict(input);
}
catch
{
}
</code></pre>
<p>I really don't get why wrapping it in the internal method rather than where it is being called from handle the error if threading isn't in play, but anyways hopefully that will point someone smarter than me here in the right direction.</p>
http://stackoverflow.com/questions/40211/how-to-compare-flags-in-c/40217#4021720Answer by Scott Nichols for How to Compare Flags in C#?Scott Nichols2008-09-02T18:31:53Z2008-09-02T18:31:53Z<pre><code>if ((testItem & FlagTest.Flag1) == FlagTest.Flag1)
{
// Do something
}
</code></pre>
http://stackoverflow.com/questions/40054/update-in-linq/40208#402083Answer by Scott Nichols for Update in LinqScott Nichols2008-09-02T18:26:10Z2008-09-02T18:26:10Z<p>By default, the entities will use all fields for checking concurrency when making edits. That's what's throwing the InvalidOperationException.</p>
<p>This can be setting the Update Check property for all fields to Never. This must be done on all fields to attach the entity as modified. If this is done, an additional call to context.SubmitChanges() will save the data.</p>
<p>Alternatively, if you know the original values, you can attach and then make the updates, but all values that are being checked must match the original values.</p>
<pre><code>LinqEntity item = new LinqEntity(){ Id = 1, Name = "OldName", Surname = "OldSurname"};
context.LinqEntities.Attach(item);
item.Name = "John";
item.Surname = "Doe";
context.SubmitChanges();
</code></pre>
http://stackoverflow.com/questions/1003174/tsql-return-rows-with-earliest-dates/1003227#1003227Comment by Scott Nichols on TSQL: Return row(s) with earliest datesScott Nichols2009-06-16T19:14:36Z2009-06-16T19:14:36ZDidn't know about this syntax, nice... it does need a sub queryhttp://stackoverflow.com/questions/159704/how-to-implement-custom-json-serialization-from-asp-net-web-service/933665#933665Comment by Scott Nichols on How to implement custom JSON serialization from ASP.NET web service?Scott Nichols2009-06-01T17:46:00Z2009-06-01T17:46:00Zthat's basically what we're doing... web config has a generic converter and the SupportedTypes property is overriden. The updates above aren't the exact code we're using, but conceptually it's the same.http://stackoverflow.com/questions/42200/managing-linq-to-sql-dbml-model-complexity/301304#301304Comment by Scott Nichols on Managing LINQ to SQL .dbml model complexityScott Nichols2008-11-19T15:36:15Z2008-11-19T15:36:15Zthe link isn't working for me....http://stackoverflow.com/questions/159704/how-to-implement-custom-json-serialization-from-asp-net-web-service/200138#200138Comment by Scott Nichols on How to implement custom JSON serialization from ASP.NET web service?Scott Nichols2008-10-14T22:19:50Z2008-10-14T22:19:50ZWon't really work for us, although we can use 3.x, we are for the time being at least bound to the 2.0 web services. They are fairly extensive and the time to convert is an obstacle, so we were looking for a quick fix to make them more lightweight. Good link though.http://stackoverflow.com/questions/159704/how-to-implement-custom-json-serialization-from-asp-net-web-service/159911#159911Comment by Scott Nichols on How to implement custom JSON serialization from ASP.NET web service?Scott Nichols2008-10-01T22:34:48Z2008-10-01T22:34:48ZThe WebService is decorated with the ScriptService attribute, so it returns JSON by default, so the ScriptMethod attribute is not necessary.http://stackoverflow.com/questions/153776/how-can-i-call-a-javascript-function-from-inside-a-method/153873#153873Comment by Scott Nichols on How can I call a javascript function from inside a method?Scott Nichols2008-09-30T17:13:05Z2008-09-30T17:13:05ZThe alert would fire after the WebMethod was called. In this example, the sequence would go PageLoad (server) -> PageMethods call (javascript) -> DoSome WebMethod (server) -> Callback_Function (javascript).http://stackoverflow.com/questions/103298/how-to-convert-a-unmanaged-double-to-a-managed-string/103580#103580Comment by Scott Nichols on How to convert a unmanaged double to a managed string?Scott Nichols2008-09-19T16:45:45Z2008-09-19T16:45:45ZYeah, I misread the original question, just read it as convert double to string. Most of my work is with C# not C++, my edit should work though right?http://stackoverflow.com/questions/85457/limiting-results-of-system-data-linq-tablet/85507#85507Comment by Scott Nichols on Limiting results of System.Data.Linq.Table<T>Scott Nichols2008-09-17T18:14:07Z2008-09-17T18:14:07ZIt looks like the InheritanceDefault property should handle this, but not working quite as I expect.http://stackoverflow.com/questions/85457/limiting-results-of-system-data-linq-tablet/85507#85507Comment by Scott Nichols on Limiting results of System.Data.Linq.Table<T>Scott Nichols2008-09-17T17:42:22Z2008-09-17T17:42:22ZI haven't used this much before, so I'm playing around with that right now. I will update with what I find out.