User Andrew Theken - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T03:00:54Zhttp://stackoverflow.com/feeds/user/32238http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1856885/how-do-you-use-net-reflection-with-t40How do you use .net Reflection with T4?Andrew Theken2009-12-06T22:37:42Z2009-12-06T22:37:42Z
<p>Hi all,</p>
<p>I have a c# project which includes a Text Template. I would like this template to generate some SQL based on reflecting against the C# classes in the project.</p>
<p>How does one access the current project's contents using T4? Is it possible, and if so, is Reflection available, or is it access to just the raw source that must then be parsed?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1608709/github-for-net-application-on-windows/1612586#16125860Answer by Andrew Theken for GitHub for .NET application on Windows?Andrew Theken2009-10-23T10:30:26Z2009-10-23T10:30:26Z<p>GitHub makes using Git very nice, I use the Git Extensions for Visual Studio. <a href="http://code.google.com/p/gitextensions/" rel="nofollow">http://code.google.com/p/gitextensions/</a> Git is a Version Control System, but it doesn't do bug tracking to my knowledge. Git/GitHub DO have the ability to fire events when certain things happen (hooks). Good luck!</p>
http://stackoverflow.com/questions/1603093/sql-server-xml-declare-namespace0SQL Server XML Declare NamespaceAndrew Theken2009-10-21T19:33:40Z2009-10-23T03:38:16Z
<p>Hi All, I would like to have a few namespaces available by default when running an XQuery in SQL Server 2005, is this possible?</p>
<p>For example, I would like to do the following:</p>
<pre><code>select * from TableWithXML
where
FieldWithXML.exist(
declare namespace nsp="http://www.example.com/exampleNamespace";
nsp:root/nsp:childnode) = 1
</code></pre>
<p>Without having to redeclare the namespace each time, so that SQL will recognize nsp without me including the prolog each time.</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/1603724/search-filters-with-lucene-net/1606544#16065442Answer by Andrew Theken for Search filters with Lucene.NET Andrew Theken2009-10-22T11:20:08Z2009-10-22T11:20:08Z<p>Lucene has a couple of different Analyzers that can scrub out the noise and do "stemming" which is helpful when you want to do fulltext searching, but you're still going to need to store the PDF itself somewhere. Lucene.Net is happy to build an index on the file system, and you could add a field to the Document it builds called something like "PATH" with the path to the document.</p>
http://stackoverflow.com/questions/317644/silverlight-is-there-a-way-to-allow-a-user-to-open-a-file-from-isolated-storage0Silverlight: is there a way to allow a user to open a file from isolated storage?Andrew Theken2008-11-25T15:07:46Z2009-10-13T21:00:03Z
<p>Hi all, I'd like to allow a user to open files in their own client applications via Silverlight. I'd like this to work similarly to WebDAV, in the sense that they could read/write the file back into Silverlight's isolated storage...</p>
<p>Is it possible to construct a file:// link to an isolated storage file?
Is there a uri scheme that is defined for silverlight in a browser that has the silverlight plugin?</p>
<p>Am I totally nuts?</p>
http://stackoverflow.com/questions/1484108/cte-vs-in-clause-performance1CTE vs. IN clause performanceAndrew Theken2009-09-27T18:17:25Z2009-09-27T22:26:04Z
<p>Alright SQL Server Gurus, fire up your analyzers.</p>
<ul>
<li>I have a list of titles in application memory (250 or so).</li>
<li>I have a database table "books" with greater than a million records, one of the columns of the table is "title" and is of type nvarchar.</li>
<li>the "books" table has another column called "ISBN"</li>
<li>books.title is not a primary key, is not unique, but is indexed.</li>
</ul>
<p>So I'd like to know which is more efficient:</p>
<pre><code>WITH titles AS (select 'Catcher and the Rye' as Title
union all 'Harry Potter ...'
...
union all 'The World Is Flat')
select ISBN from books, titles where books.title = titles.title;
</code></pre>
<p>OR:</p>
<pre><code>select ISBN from books where title in ('Catcher and the Rye','Harry Potter',...,'The World Is Flat');
</code></pre>
<p>OR:</p>
<pre><code>???
</code></pre>
http://stackoverflow.com/questions/606467/how-to-write-a-term-of-service-and-privacy-statements/1194219#11942190Answer by Andrew Theken for How to write a term of service and privacy statements?Andrew Theken2009-07-28T13:49:27Z2009-07-28T13:49:27Z<p>I am in a situation where I want to get some TOS for a project I am working on. I really like GitHub's TOS - but as mentioned before, ripping it from a site without permission is probably copyright infringement, and also just bad manners.</p>
<p>However, I just got a hot tip on this from someone. Wordpress' TOS are under creative commons sharealike, so you can use them as a starting point for your own:
<a href="http://en.wordpress.com/tos/" rel="nofollow">http://en.wordpress.com/tos/</a></p>
http://stackoverflow.com/questions/360462/getting-the-location-of-a-tt-file-in-t41Getting the location of a .tt file in T4.Andrew Theken2008-12-11T18:55:24Z2009-07-27T16:37:42Z
<p>Using T4 I want to generate some code based on examining what files are in a directory relative to the template file being executed.</p>
<p>Is there a way in c# to identify what the path of the current template file is?</p>
http://stackoverflow.com/questions/1185649/trust-level-required-for-membership-providers0Trust Level required for Membership ProvidersAndrew Theken2009-07-26T21:47:32Z2009-07-26T23:23:32Z
<p>Hello all,</p>
<p>I am hosting an ASP.Net site with GoDaddy - It seems that the trust level for the application is Minimal, this seems to create issues with my using the standard SQLMembershipProvider. Can anyone help me to understand if this is a limitation of the SQLMembershipProvider, or the fact that I only have Minimal trust?</p>
<p>To put it another way, is it possible to use the Membership/Role Provider infrastructure in Minimal trust? or do I need to use a different approach for authentication/authorization.</p>
http://stackoverflow.com/questions/627705/net-webdav-server0.Net WebDAV ServerAndrew Theken2009-03-09T19:42:24Z2009-05-13T21:24:29Z
<p>Hi all, I am looking to implement a WebDAV server in ASP.Net. the app will be deployed to IIS 6. I have seen a few frameworks that provide this functionality, but I can't seem to identify how they're able to accomplish it without (apparently) modifying IIS settings.</p>
<p>My specific question is how do I configure IIS and ASP.Net so that a IHttpModule/IHttpHandler might have an opportunity to handle any of the additional WebDAV verbs (i.e. LOCK, OPTIONS, PROFIND, etc.)</p>
http://stackoverflow.com/questions/356693/net-windows-update-querying3.Net Windows Update QueryingAndrew Theken2008-12-10T16:35:47Z2009-04-30T11:04:10Z
<p>Hi all,</p>
<p>I was curious if there's a .Net API that would allow me to identify what updates are pending for "Windows Update,"</p>
<p>failing that, is there a windows powershell command that can get it?</p>
http://stackoverflow.com/questions/619231/linq-to-sql-without-explicit-foreign-key-relationships/628117#6281173Answer by Andrew Theken for Linq To SQL Without Explicit Foreign Key RelationshipsAndrew Theken2009-03-09T21:35:13Z2009-03-09T21:35:13Z<pre><code>CasesDataContext db = new CasesDataContext();
var Cases = from c in db.Cases
join ci in db.CaseInfo on
ci.ID equals c.InfoID
where ci.CaseInfoMeta == "some value"
select new {CASE=c, INFO=ci};
</code></pre>
<p>my "join" linq is a bit rusty, but the above should get close to what you're after.</p>
http://stackoverflow.com/questions/387768/png-trayicon-transparency-on-windows/388038#3880381Answer by Andrew Theken for PNG TrayIcon transparency on WindowsAndrew Theken2008-12-23T02:48:37Z2008-12-23T02:48:37Z<p>convert it to gif, then see this:
<a href="http://jeans.studentenweb.org/java/trayicon/trayicon.html" rel="nofollow">http://jeans.studentenweb.org/java/trayicon/trayicon.html</a></p>
http://stackoverflow.com/questions/384755/linq-to-sql-one-to-many-databinding-deleting-problem/388030#3880300Answer by Andrew Theken for LINQ-to-SQL + One-to-Many + DataBinding deleting problemAndrew Theken2008-12-23T02:44:47Z2008-12-23T02:44:47Z<p>you need to decouple the save code from the events in your GUI, it seems like you're a little to eager to save things to the db before the dust has settled and you're queuing and removing things from the db that never got there in the first place, it would be best if you could identify a point when the user will "commit" their changes, and at that moment, process the full condition of the GUI - this will save you a bunch of spaghetti code.</p>
<p>I would also be curious to know if your entities have autonumber IDs or if you're using some other ID mechanism. You're probably sending DELETEs to the database for the as-yet-uncommitted Ingredient records, if those include NULL IDs, I think the linq could get nasty.</p>
<p>Have you hooked up a textwriter to your DataContext.Log to see what sorts of SQL is generated just before you get your exeception?</p>
http://stackoverflow.com/questions/387772/does-linq-use-datarelations-to-optimize-joins/388020#3880201Answer by Andrew Theken for Does LINQ use DataRelations to optimize joins?Andrew Theken2008-12-23T02:33:43Z2008-12-23T02:33:43Z<p>This is an explaination:
<a href="http://msdn.microsoft.com/en-us/library/bb386969.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb386969.aspx</a></p>
<p>But in your example above you're telling linq about the parent child relationship with the "JOIN" syntax. I would recommend you make a strongly-typed dataset if possible, and all the relationships and joining will be handled for you.</p>
http://stackoverflow.com/questions/387915/c-satellite-assemblies-do-i-need-to-link-default-culture-resource/388011#3880111Answer by Andrew Theken for C# Satellite Assemblies? Do I need to link default culture resourceAndrew Theken2008-12-23T02:29:40Z2008-12-23T02:29:40Z<p>Basically,</p>
<p>if the current culture that the OS is using matches a certain culture that you've shipped, it will be used, if the current culture matches none of the cultures you've shipped, it will use the neutral culture.</p>
<p>In the most symplistic cases, you'll just need to include any of the localized dlls with the deployment and all will be fine.. </p>
<p>When you're using resource managers, I think you can also pass in which culture you want to use explicitly, and the runtime will search for resources that match - this is better when a user of an ASP.Net site might have a certain culture preference that is different from that of the machine that the site is running on.</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc163609.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc163609.aspx</a> seems to be a good starting point.</p>
http://stackoverflow.com/questions/372040/how-to-save-record-to-relational-tables-with-linq-to-sql/372110#3721101Answer by Andrew Theken for How to Save Record to Relational Tables With Linq To SqlAndrew Theken2008-12-16T17:53:37Z2008-12-16T17:53:37Z<p>I think you're looking for something like this.</p>
<p><a href="http://hookedonlinq.com/LINQtoSql5MinuteOverview.ashx" rel="nofollow">http://hookedonlinq.com/LINQtoSql5MinuteOverview.ashx</a></p>
http://stackoverflow.com/questions/369857/basic-authentication-with-iis-6-0-and-asp-net1Basic Authentication with IIS 6.0 and Asp.NetAndrew Theken2008-12-15T22:03:31Z2008-12-15T22:09:06Z
<p>Is it possible to provide Basic authentication to clients using ASP.Net to authenticate the request in IIS 6.0 (I am pretty sure this is doable in 7.0 without much pain).</p>
http://stackoverflow.com/questions/360789/in-c-wait-on-the-mainthread-while-continuing-to-process-ui-updates-net-2-0-c/360812#3608121Answer by Andrew Theken for In C#, wait on the mainthread while continuing to process UI updates? (.NET 2.0 CF)Andrew Theken2008-12-11T20:43:53Z2008-12-11T20:43:53Z<p>You want to use the "<a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx" rel="nofollow">BackgroundWorker</a>" class, which will take most of this pain out of this for you.. but as mentioned before, you'll also want to structure it so that the main thread is updating the UI and the worker is doing the heavy lifting.</p>
http://stackoverflow.com/questions/345798/what-are-the-best-books-youve-read-about-the-art-science-of-software-developme0What are the best books you've read about the art & science of software development? [closed]Andrew Theken2008-12-06T02:41:24Z2008-12-06T03:06:47Z
<p>Hi all,</p>
<p>I have read some of the classics: GoF Design Patterns, Practice of Programming, Joel on Software, Cathedral & the Bazaar</p>
<p>What books have you read that changed how you thought about software design and development?</p>
<p>P.S. Obviously there's no right answer on this one, so I won't be "accepting answers" but I am sure the community at large will probably like to see what others think, so don't be shy about posting your favorites!</p>
<p>P.P.S If you post one title per response, we all can vote our favorites up and down.</p>
<p>Duplicate of <a href="http://stackoverflow.com/questions/305691/which-book-dramatically-changed-your-way-of-approaching-problems#305729">this question</a>. Also see <a href="http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read">this question</a>.</p>
http://stackoverflow.com/questions/345680/interacting-with-jquery-plugin-objects-after-their-creation/345784#3457844Answer by Andrew Theken for Interacting with jQuery plugin objects after their creationAndrew Theken2008-12-06T02:28:52Z2008-12-06T02:28:52Z<p>what you should do is extend the settings for your plugin:</p>
<pre><code>jQuery.ticker = function(settings)
{
var settings =
jQuery.extend(
{
action : 'create',
item : $(this)
}
,settings);
return $(this).each(function(){
if(settings.action =='create')
{
//initialize ticker..
}
else if(settings.action == 'add')
{
//add to ticker.
}
}//end each.
}//end plugin.
$('#ticker').ticker(); //this will initialize it, no problem.
var settings1 = { action : 'add', item : $(expr1) }
$('#ticker').ticker(settings1);//this will execute the "add" action.
</code></pre>
http://stackoverflow.com/questions/343924/sql-server-2005-file-resizing2SQL Server 2005: File ResizingAndrew Theken2008-12-05T14:05:37Z2008-12-05T18:04:53Z
<p>Hi all,</p>
<p>I have some databases that have four files each; one for PRIMARY, IDX, IMAGE, LOG their initial sizes were set to 200MB each but they are consuming far less space, about 100MB total.</p>
<p>1) is it possible to resize the database files while they are in use down to more reasonable sizes, say "current consumption" + 10MB? </p>
<p>2) is it possible to merge these files into just a single .mdf and .ldf?</p>
<p>My preferred answer to this would be some T-SQL, but I will accept links to MSDN (or other sites) with a reference for what T-SQL to look for.</p>
http://stackoverflow.com/questions/300791/how-to-do-an-attribute-selection-for-this-attribute-starting-with-a/300863#3008631Answer by Andrew Theken for How to do an attribute selection for "(this) attribute starting with a #"Andrew Theken2008-11-19T02:41:00Z2008-11-19T02:41:00Z<p>//using the following, you're searching all children that have an href tag starting with '#' inside of 'this'</p>
<pre><code> var links = $('*[href^=#]', this);
</code></pre>
http://stackoverflow.com/questions/258481/how-can-i-check-whether-i-am-in-a-debug-or-release-build-in-a-web-app/258495#2584952Answer by Andrew Theken for How can I check whether I am in a debug or release build in a web app?Andrew Theken2008-11-03T12:34:24Z2008-11-03T12:56:58Z<p>Look at <a href="http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.getsection.aspx" rel="nofollow">ConfigurationManager.GetSection()</a> - this should get you most of the way there.. however, I think you're better off just changing between debug and release modes and letting the compiler determine to execute the "#if DEBUG" enclosed statements.</p>
<pre><code>#if DEBUG
/* re-throw the exception... */
#else
/* write something in the event log... */
#endif
</code></pre>
<p>the above will work just fine, just make sure you have at least two build configurations (right-click the project you're working on and go to "Properties" there's a section in there on Builds) - make sure that one of those builds has the "define DEBUG" checked and the other does not.</p>
http://stackoverflow.com/questions/256931/how-to-highlight-occurrences-of-a-search-term-in-text-in-visual-studio/256940#2569402Answer by Andrew Theken for How to highlight occurrences of a search term in text in Visual Studio?Andrew Theken2008-11-02T14:49:52Z2008-11-02T14:49:52Z<p>When you run a "find" you can click "bookmark all"
which will identify on the left which lines the search terms occur on, but you can't "highlight" the elements using visual studio, out of the box.</p>
http://stackoverflow.com/questions/256919/using-c-how-can-i-determine-the-sizes-of-the-components-of-a-floating-point/256935#2569354Answer by Andrew Theken for Using C: How can I determine the sizes of the components of a floating point?Andrew Theken2008-11-02T14:46:12Z2008-11-02T14:46:12Z<p>Since you're looking at building for a number of systems, I think you may be looking at using GCC for compilation.</p>
<p>Some good info on floating point - this is what almost all modern architectures use:
<a href="http://en.wikipedia.org/wiki/IEEE_754" rel="nofollow">http://en.wikipedia.org/wiki/IEEE_754</a></p>
<p>This details some of the differences that can come up
<a href="http://www.network-theory.co.uk/docs/gccintro/gccintro_70.html" rel="nofollow">http://www.network-theory.co.uk/docs/gccintro/gccintro_70.html</a></p>
http://stackoverflow.com/questions/254902/design-for-handling-both-forms-authentication-and-active-directory/255867#2558671Answer by Andrew Theken for Design for handling both forms authentication and active directoryAndrew Theken2008-11-01T18:00:27Z2008-11-01T18:00:27Z<p>actually, you're probably looking for the "Strategy" pattern, since you need to implement a specific set of members (those required implement an authentication "provider"), but don't want the authentication to care HOW they are implemented. , <a href="http://en.wikipedia.org/wiki/Strategy_pattern" rel="nofollow">http://en.wikipedia.org/wiki/Strategy_pattern</a></p>
<p>Facade is good, but that is applies more when you're trying to "reshape" an existing component to make it compatible with another component. Since you're implementing the providers, you don't need to "reshape" them to fit, you just implement them with the appropriate provider members in the first place..</p>
http://stackoverflow.com/questions/255830/javascript-drag-and-drop/255854#2558540Answer by Andrew Theken for Javascript Drag and dropAndrew Theken2008-11-01T17:52:42Z2008-11-01T17:52:42Z<p>I would recommend you check out jQuery (<a href="http://www.jquery.com" rel="nofollow">http://www.jquery.com</a>),
there are "draggables" and "droppables."</p>
http://stackoverflow.com/questions/250438/best-practices-for-merging-assemblies/252367#2523670Answer by Andrew Theken for Best practices for merging assemblies?Andrew Theken2008-10-31T01:35:20Z2008-10-31T01:35:20Z<p>I suppose there might be some advantage with regards to keeping a bunch of localized assemblies in one (which, I am not even sure you can do)</p>
<p>I would not merge libraries from other vendors - because they often have their own licensing, and updating them would require you to redistribute a new version of your code. </p>
<p>Merging your own libraries may be advantageous if you have many libraries to keep the directory neat, or make sure that some code will ALWAYS be with the main executing assembly.</p>
<p>I think ILMerge does better with libraries being merged into an EXE, so that you have one file instead of many.</p>
http://stackoverflow.com/questions/252179/equivalent-isfile-function-for-urls/252183#2521830Answer by Andrew Theken for Equivalent is_file() function for URLs?Andrew Theken2008-10-30T23:54:29Z2008-10-30T23:54:29Z<p>one such way would be to request the url and get a response with a status code of 200 back, aside from that, there's really no good way because the server has the option of handling the request however it likes (including giving you other status codes for files that exist, but you don't have access to for a number of reasons).</p>
http://stackoverflow.com/questions/365489/questions-every-good-net-developer-should-be-able-to-answer/365620#365620Comment by Andrew Theken on Questions every good .NET developer should be able to answer?Andrew Theken2009-03-01T01:29:10Z2009-03-01T01:29:10ZNo offense to Jon Skeet - but I think Rick Strahl tends to show up with the answers more frequently for the types of issues I run into..http://stackoverflow.com/questions/251711/fetching-items-which-has-a-specific-set-of-child-elements-advanced-query-possi/252011#252011Comment by Andrew Theken on Fetching items which has a specific set of child elements (advanced query - possible?)Andrew Theken2009-02-14T14:05:47Z2009-02-14T14:05:47ZI broke the query into two sections, "possibleitems" and "items" but in reality, the DB is never hit until after you start enumerating "items" - only the exact things you want are hit. If you're using Linq, you should know about "Deferred Execution"http://stackoverflow.com/questions/360462/getting-the-location-of-a-tt-file-in-t4/397883#397883Comment by Andrew Theken on Getting the location of a .tt file in T4.Andrew Theken2009-02-14T13:55:37Z2009-02-14T13:55:37ZThanks for the info, sorry it took me so long to accept.http://stackoverflow.com/questions/372075/can-anyone-give-me-a-little-explanatory-example-about-insertonsubmit-and-insertal/372084#372084Comment by Andrew Theken on Can anyone give me a little explanatory example about InsertOnSubmit and InsertAllOnSubmitAndrew Theken2008-12-16T17:46:00Z2008-12-16T17:46:00ZI think to clarify, what that means is that if you have a collection of items to submit, you would pass it to "InsertAllOnSubmit", instead of iterating over the collection and calling "InsertOnSubmit" on each item.http://stackoverflow.com/questions/369857/basic-authentication-with-iis-6-0-and-asp-net/369871#369871Comment by Andrew Theken on Basic Authentication with IIS 6.0 and Asp.NetAndrew Theken2008-12-15T22:26:00Z2008-12-15T22:26:00Zthis is <i>exactly</i> what I was looking for! Thanks!http://stackoverflow.com/questions/369572/linq-error-invalid-column-name-on-group-by-sumComment by Andrew Theken on LINQ Error Invalid Column Name on Group by sum.Andrew Theken2008-12-15T20:26:35Z2008-12-15T20:26:35Zdo you have any associations/relationships set up for any of the tables?http://stackoverflow.com/questions/317644/silverlight-is-there-a-way-to-allow-a-user-to-open-a-file-from-isolated-storage/317962#317962Comment by Andrew Theken on Silverlight: is there a way to allow a user to open a file from isolated storage?Andrew Theken2008-11-25T17:27:44Z2008-11-25T17:27:44ZUnfortunately, that is the inverse of what I am trying to do, which is to push a file into Isolated Storage from some other remote location, and then allow a user to open that file for edit, when they click save, I want Silverlight to upload the changes back to the original location.http://stackoverflow.com/questions/248923/windows-workflow-web-service-appdata-directory-database/284579#284579Comment by Andrew Theken on Windows Workflow - Web Service - App_Data Directory - DatabaseAndrew Theken2008-11-20T13:40:55Z2008-11-20T13:40:55ZI'd be curious to see the code that you used with VirtualPathUtility, and what error you received, just for my own edification.http://stackoverflow.com/questions/257393/are-there-grandma-friendly-open-source-alternatives-to-crashplanComment by Andrew Theken on Are there "Grandma-friendly" Open Source alternatives to CrashPlan?Andrew Theken2008-11-03T01:46:59Z2008-11-03T01:46:59Zwhat open source backup app does she use? ;-)http://stackoverflow.com/questions/63463/split-out-ints-from-string/63654#63654Comment by Andrew Theken on Split out ints from stringAndrew Theken2008-10-31T00:00:47Z2008-10-31T00:00:47Zteach a man to fish...http://stackoverflow.com/questions/250843/open-source-project-analytics-sites/250869#250869Comment by Andrew Theken on Open Source Project Analytics Sites?Andrew Theken2008-10-30T16:54:37Z2008-10-30T16:54:37ZOhloh was exactly what I was looking for, thanks!