User Dave Markle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T20:15:50Zhttp://stackoverflow.com/feeds/user/24995http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1934626/good-c-learning-book/1934637#19346371Answer by Dave Markle for good c# learning bookDave Markle2009-12-20T01:24:38Z2009-12-20T14:24:10Z<p>I'm a big fan of #2 -- Jesse Liberty's book. Also check out <a href="http://rads.stackoverflow.com/amzn/click/0735627045" rel="nofollow">Richter's book</a>, which is, IMO the definitive guide to the .NET CLR itself. You should have a good background in programming before reading Richter, though. </p>
http://stackoverflow.com/questions/1933134/add-iis-7-apppool-identities-as-sql-server-logons/1933273#19332730Answer by Dave Markle for Add IIS 7 AppPool Identities as SQL Server LogonsDave Markle2009-12-19T15:57:32Z2009-12-19T15:57:32Z<p>If you're going across machines, you either need to be using NETWORK SERVICE, LOCAL SYSTEM, a domain account, or a SQL 2008 R2 (if you have it) Managed Service Account (which is my preference if you had such an infrastructure). You can not use an account which is not visible to the Active Directory domain.</p>
http://stackoverflow.com/questions/1933248/override-property-in-style-attribute/1933264#19332640Answer by Dave Markle for Override property in "style=" attribute?Dave Markle2009-12-19T15:55:08Z2009-12-19T15:55:08Z<p>You can set the style with some Javascript, or (even better yet) use some JQuery to do it for you. </p>
http://stackoverflow.com/questions/1933002/measuring-performance-for-single-or-multiple-queries-when-you-have-large-number-o/1933037#19330374Answer by Dave Markle for Measuring performance for Single or multiple queries when you have large number of bridge tablesDave Markle2009-12-19T14:26:51Z2009-12-19T14:26:51Z<p>Option 2 is <em>almost</em> always going to be faster, as long as you don't have that many duplicate values. It really depends on the size of the redundant data -- but having to do multiple select statements really is the kiss of death when you have a large number of rows because it has to do looping and can't do any more sophisticated type of join on the server side, but perhaps more importantly -- if your logic is making many database calls, those are happening across process/network boundaries which in and of itself is an order of magnitude slower. </p>
<p>There are other ways you could optimize the results if it really, really mattered -- you could have the database create some XML that could be more efficiently serialized between the data tier and your logic tier, but that's a LOT of work and is hardly what anyone would call cross-platform or generic.</p>
<p>Of course IMO this all begs the question... Why not just use an ORM like Linq to Entities or Linq to SQL or (N)Hibernate? Why reinvent this wheel?</p>
http://stackoverflow.com/questions/1927835/updating-web-config-with-an-msbuild-task/1927867#19278672Answer by Dave Markle for Updating web.config with an MSBUILD taskDave Markle2009-12-18T12:10:52Z2009-12-19T02:00:12Z<p>either use the XmlUpdate task from <a href="http://msbuildtasks.tigris.org/" rel="nofollow">MSBuild Community Tasks</a> or try a regex of:</p>
<pre><code>Regex="debug=&quot;true&quot;"
</code></pre>
http://stackoverflow.com/questions/1927874/sql-select-where-there-is-only-one-date/1927912#19279120Answer by Dave Markle for SQL select where there is only one dateDave Markle2009-12-18T12:17:47Z2009-12-18T18:31:10Z<pre><code>SELECT i.InvoiceNumber, i.CustomerCode, i.Amount, i.InvoiceDate
FROM Invoice i
WHERE i.InvoiceDate = '7/12/2009'
AND i.InvoiceNumber IN (
SELECT MAX(InvoiceNumber)
FROM Invoice
GROUP BY CustomerCode
HAVING COUNT(*) = 1
)
</code></pre>
http://stackoverflow.com/questions/1928264/object-that-is-needed-throughout-the-application/1928295#19282951Answer by Dave Markle for Object that is needed throughout the applicationDave Markle2009-12-18T13:49:50Z2009-12-18T13:49:50Z<p>In this case, a singleton is the proper choice. You just don't want to start shoving in a lot of unrelated stuff in there -- you want the class to remain cohesive and not just a "bag of properties" that sits around. As far as multithreading goes, you can put the appropriate controls on your singleton class, no problem. What types of locks and protections you use, however, is specific to your implementation (there's not enough detail in your question to answer that, though).</p>
http://stackoverflow.com/questions/1927933/does-resharper-make-you-lazy/1927950#19279502Answer by Dave Markle for Does resharper make you lazy?Dave Markle2009-12-18T12:30:34Z2009-12-18T12:30:34Z<p>I have found that it helps me clean up my code, but I don't think it's an effective crutch. You might say Intellisense has made me lazy, but not Resharper. </p>
<p>Sadly, I had to disable resharper on my workstation,p though. It was too damned slow. </p>
http://stackoverflow.com/questions/1927847/why-is-it-necessary-to-assign-atleast-one-column-in-a-table-in-mysql-as-primary/1927882#19278821Answer by Dave Markle for Why is it necessary to assign atleast one column in a table (in MySQL) as PRIMARY KEY for the table to accept UPDATE and INSERT statements via JDBC?Dave Markle2009-12-18T12:13:50Z2009-12-18T12:13:50Z<p>There should be no reason why you can't have a negative number in a primary key field, unless you are using an unsigned integer as its data type.</p>
<p>When you don't have a primary key defined (or a unique index for that matter), the database server has no way of knowing that the rows are unique. Being able to tell one row from another is pretty fundamental when it comes to databases, and I think maybe the designers of MySQL probably are forcing this on you -- I don't know, since I don't use MySQL all that much... It's a problem that I've never ran into, to be honest, because pretty much every table that I ever create has a PK!</p>
http://stackoverflow.com/questions/1911794/wpf-and-linq-sql-how-and-where-to-keep-track-of-changes/1911819#19118190Answer by Dave Markle for WPF and LINQ/SQL - how and where to keep track of changes?Dave Markle2009-12-16T02:03:45Z2009-12-16T02:03:45Z<p>When I write this kind of software, my VMs never have a reference in any way to the data model. When you couple them like this, you are pretty much married to a simple two-tier solution which can be really tough to break out. </p>
<p>If you disconnect the DataContext entirely from your VM and have them live on their own, your application becomes:</p>
<ul>
<li>Much more testable -- your VMs can be tested without the datacontext</li>
<li>Potentially stateless at the data layer -- it's easy to change your architecture to adopt a stateless 3-tier based solution.</li>
<li>Able to easily integrate other data sources -- your VMs can elegantly contain aggregates and combinations of other data sources on their own.</li>
</ul>
<p>So in short, yes, I would recommend decoupling the data access classes from the ViewModel objects throughout the app. It might be a bit more code, but it will pay dividends down the road with the architecture's flexibility.</p>
http://stackoverflow.com/questions/1911577/adding-null-to-a-listbool-cast-as-an-ilist-throwing-an-exception/1911610#19116100Answer by Dave Markle for Adding null to a List<bool?> cast as an IList throwing an exception.Dave Markle2009-12-16T01:02:20Z2009-12-16T01:02:20Z<p>Ha! That's a funny one. I believe it has to do with the idea that the nullable bool is, strictly speaking, implemented as a struct and IList expects an object, and maybe it's expecting to box a bool or something. Jon Skeet where are you? We need you! (taps ruby slippers 3 times)</p>
http://stackoverflow.com/questions/343540/access-rdlc-elements-from-code-behind-file/1910664#19106640Answer by Dave Markle for Access rdlc elements from code behind fileDave Markle2009-12-15T21:52:47Z2009-12-15T21:52:47Z<p>You can just load the RDLC code as XML using XDocument or XmlDocument or whatever you want, and then query and update the file accordingly as you wish, and then save the RDLC. If you have a value you want to set programatically this way, you can define a hidden report parameter and use the DOM to update that parameter programatically in the same way.</p>
http://stackoverflow.com/questions/1910536/iterating-and-creating-new-anonymous-types-dynamically/1910569#19105692Answer by Dave Markle for Iterating and creating new anonymous types dynamicallyDave Markle2009-12-15T21:34:04Z2009-12-15T21:34:04Z<p>Not sure exactly what you're asking, but have you tried something of the form:</p>
<pre><code>col.Select(c => new Column {Name = c.Name ... etc}).ToList();
</code></pre>
http://stackoverflow.com/questions/1909568/linq-returning-ienumerablet/1909591#19095910Answer by Dave Markle for Linq returning IEnumerable<T>Dave Markle2009-12-15T18:58:54Z2009-12-15T19:07:16Z<p>Instead of using Eval("Authors"), use Eval("Authors.FirstName").</p>
<p>Also, you don't need the join between books and Authors. You can just select the .Authors property from the book object. (I take it that Authors is actually a typo and it should be "Author" in this case?)</p>
http://stackoverflow.com/questions/1900603/css-wrap-image-or-center-float/1900723#19007230Answer by Dave Markle for CSS wrap image or "center float"Dave Markle2009-12-14T12:45:11Z2009-12-14T12:45:11Z<p>Remove the float but add <code>overflow:auto</code> to the containing element. That will make the non-floating element contain its inner floating elements the way you expect.</p>
http://stackoverflow.com/questions/1900670/mysql-select-from-tablea-tableb-problem/1900694#19006944Answer by Dave Markle for mysql - select * from tableA, tableB - problemDave Markle2009-12-14T12:38:51Z2009-12-14T12:38:51Z<p>It's not technically an endless loop - you are creating a cartesian product of the two tables -- that means that for each row in table a, every row in table b will be duplicated. This is almost never what you want to do -- it means that your output will be AXB rows, where A is the number of rows in table A and B is the number of rows in table B.</p>
<p>You either want to accomplish this task by selecting two statements and appending to the file twice, UNIONing the two tables together, or JOINing them together. Google for SQL Union, and INNER JOIN to learn more.</p>
http://stackoverflow.com/questions/1897444/css-style-centering-in-safari/1897453#18974532Answer by Dave Markle for css style Centering in safariDave Markle2009-12-13T19:27:26Z2009-12-14T07:51:19Z<p>It depends on what you are trying to style. You are probably trying to center a block level element like a DIV or UL. In that case, you center using </p>
<pre><code>div {
margin-left:auto;
margin-right:auto;
padding-left:<some fixed size>;
padding-right:<some fixed size>;
width:<some fixed size>;
}
</code></pre>
http://stackoverflow.com/questions/1897455/advice-on-using-a-web-server-as-a-cache/1897462#18974620Answer by Dave Markle for Advice on using a web server as a cacheDave Markle2009-12-13T19:31:29Z2009-12-13T19:31:29Z<p>Your reasons behind the design are insane, but they're not yours :)</p>
<p>NTFS can handle what you're trying to do. This shouldn't be much of a problem. Yes, you might eventually have fragmentation problems if you run low on disk space, but make sure that you have copious amounts of space and you shouldn't have a problem. If you're a Windows shop, just use IIS.</p>
<p>I really don't think you will have much of a problem with this architecture. Just keep it simple like you're doing and things should be fine.</p>
http://stackoverflow.com/questions/1895071/how-can-i-fix-this-styling-bug-in-ie6/1895085#18950852Answer by Dave Markle for How can I fix this styling bug in IE6? Dave Markle2009-12-12T23:47:10Z2009-12-12T23:47:10Z<p>:-( </p>
<p>This is a well-known CSS bug in IE6. AFAIK the workaround (it's horrible, shield your eyes) is to put an IFRAME underneath your menu so that the IFRAME obscures the improperly z-indexed SELECT. It's so very horrible.</p>
<p>But JQuery is here to the rescue, as always:</p>
<p><a href="http://jetlogs.org/2008/05/09/jquery-fix-ie-select-box-z-index-bug/" rel="nofollow">http://jetlogs.org/2008/05/09/jquery-fix-ie-select-box-z-index-bug/</a></p>
http://stackoverflow.com/questions/1894406/in-what-conditions-we-can-use-css-selector/1894419#18944191Answer by Dave Markle for in what conditions we can use css * selector?Dave Markle2009-12-12T19:16:18Z2009-12-12T19:44:43Z<p>It's supported in pretty much everything modern...</p>
<ul>
<li><p>is useful when you are selecting any child element. So if I want to add some margin to all elements inside an element with an id of "fudge", the selector would be:</p>
<p>#fudge > *
{
margin-left:5px;
}</p></li>
</ul>
http://stackoverflow.com/questions/1893711/how-do-you-define-a-great-programmer-average-programmer-and-subpar-programm/1893725#18937251Answer by Dave Markle for How do you define a "great programmer", "average programmer" and "subpar programmer"?Dave Markle2009-12-12T15:15:50Z2009-12-12T15:15:50Z<p>I don't think this question is specific to programming, but, answered most generally, I think it's something like this:</p>
<p><a href="http://en.wikipedia.org/wiki/Four%5Fstages%5Fof%5Fcompetence" rel="nofollow">http://en.wikipedia.org/wiki/Four_stages_of_competence</a></p>
http://stackoverflow.com/questions/1893595/what-are-the-benefits-of-using-names-rather-than-version-numbers/1893615#18936150Answer by Dave Markle for What are the benefits of using names rather than version numbers?Dave Markle2009-12-12T14:37:21Z2009-12-12T14:37:21Z<p>It's easier to talk about the release verbally using code names. When developing on several branches, it's easy to get confused when a lot of numbers start getting bandied about in conversation. </p>
<p>This is probably a Good Thing for developers while the code is being worked on, but quickly becomes annoying after the release happens, and the order of the releases isn't obvious. IMO codenames are all well and good, but after a release, use the number!</p>
http://stackoverflow.com/questions/1893559/how-do-i-implement-layer-with-gdi/1893605#18936051Answer by Dave Markle for How do I implement layer with GDI?Dave Markle2009-12-12T14:35:11Z2009-12-12T14:35:11Z<p>You need to store each layer of the image in its own buffer, and then combine them to output it. So the background would be in one Image object and the shape would be in another Image object. When you get the WM_Paint message, you would have to combine both images into one and output that (or you would have to have the images pre-combined in a third Image object in memory). </p>
http://stackoverflow.com/questions/1891350/sql-server-readpast-hint/1891578#18915781Answer by Dave Markle for SQL Server READPAST hintDave Markle2009-12-11T23:39:49Z2009-12-11T23:39:49Z<p>You're at the wrong isolation level. Remember what happens with the snapshot isolation level. If one transaction is making a change, no other concurrent transactions see that transaction. Period. Other transactions only will see your changes once you have committed, but only if they START after your commit. The solution to this is to use a different isolation level. Wrap your statements in a transaction and SET TRANSACTION LEVEL SERIALIZABLE. This will ensure that your other concurrent transactions work as if they were all run serially, which is what you seem to want here.</p>
http://stackoverflow.com/questions/1887761/translating-sql-to-linq/1887774#18877742Answer by Dave Markle for Translating Sql to LinqDave Markle2009-12-11T12:29:59Z2009-12-11T12:29:59Z<p><strong>It's your parentheses. You're missing them around your City's OR statement.</strong></p>
<pre><code>LinqDBDataContext Context = new LinqDBDataContext();
var query = from emps in
(
from empls in Context.Employees
where (empls.City == "London" || empls.City == "Seattle")
&& empls.Region != null
select new
{
FirstName = empls.FirstName,
LastName = empls.LastName,
City = empls.City,
Region = empls.Region
}
)
select emps;
GridView1.DataSource = query;
GridView1.DataBind();
</code></pre>
http://stackoverflow.com/questions/1887728/how-to-convert-xml-data-into-a-binary-deliverable/1887745#18877450Answer by Dave Markle for How to convert XML Data into a binary deliverable?Dave Markle2009-12-11T12:24:59Z2009-12-11T12:24:59Z<p>Ever thought of using a <a href="http://msdn.microsoft.com/en-us/magazine/cc163566.aspx" rel="nofollow">Resource file</a> for this instead of your own home-rolled XML file? This is pretty much what they're made to do.</p>
http://stackoverflow.com/questions/1887684/how-call-net-command-prompt/1887720#18877202Answer by Dave Markle for How call .NET command prompt Dave Markle2009-12-11T12:19:29Z2009-12-11T12:19:29Z<p>You'll want to use the System.Diagnostics.Process object to spawn another task. You probably don't want a command prompt. Instead, you'll want to call MSBUILD.EXE directly and pass in a target of "Publish".</p>
<p>msbuild.exe /t:Publish MySolution.sln</p>
http://stackoverflow.com/questions/1887638/application-structure-using-wcf/1887705#18877051Answer by Dave Markle for Application structure using WCFDave Markle2009-12-11T12:17:48Z2009-12-11T12:17:48Z<p>It depends. WCF is a big framework and it's meant to span a lot of different scenarios.</p>
<p>But for a straightforward application like yours, when you don't care about stuff like Java interop or generic web services interop, this is what I do:</p>
<p>All DataContract classes and ServiceContract interfaces go into a library (or libraries) which is shared between the client and the server. Note that you probably shouldn't decorate your service Implementation with ServiceContract, you'd create a separate interface with the ServiceContract attributes which you could put in a shared assembly.</p>
<p>So you seem to be doing just about everthing right. What you probably DON'T need is to auto-generate the proxies at all in this case. That's just causing you pain. So don't use the Add Service Reference dialog for what you're doing. Just include your shared DataContract assemblies and use ChannelFactory to get a proxy to your service interface defined in the shared library. This also keeps you from having to keep re-generating the proxy in Visual Studio, which, for any decent sized project, gets old VERY FAST. </p>
<p>If you're going this route, you can also get rid of the MetaDataExchange endpoint, since that's only needed to describe the service to the client. Since you do everything in a shared assembly, you don't need the service description, since you already have the service description in code form.</p>
http://stackoverflow.com/questions/1880460/ie8-and-border-css-property-on-select-menus/1880650#18806501Answer by Dave Markle for IE8 and border css property on select menusDave Markle2009-12-10T12:25:04Z2009-12-10T12:25:04Z<p>try putting this in your HEAD tag:</p>
<pre><code><meta http-equiv="X-UA-Compatible" content="IE=100" >
</code></pre>
<p>as per: <a href="http://msdn.microsoft.com/en-us/library/cc288325%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc288325%28VS.85%29.aspx</a></p>
http://stackoverflow.com/questions/1855322/datatable-to-listt-conversion-problem/1855339#18553390Answer by Dave Markle for DataTable to List<T> conversion problemDave Markle2009-12-06T13:01:20Z2009-12-06T13:01:20Z<p>The constructor most signature probably does not match the argument you're supplying. </p>
http://stackoverflow.com/questions/1935236/how-to-get-papers-on-relational-database-theoryComment by Dave Markle on How to get papers on Relational Database Theory?Dave Markle2009-12-20T14:39:23Z2009-12-20T14:39:23ZHow in god's name is this not programming related? Getting information about getting information about programming is related to programming. This is such a huge annoyance.http://stackoverflow.com/questions/1933248/override-property-in-style-attribute/1933269#1933269Comment by Dave Markle on Override property in "style=" attribute?Dave Markle2009-12-19T15:59:04Z2009-12-19T15:59:04ZDidn't know !important was THAT "important"! I learned something today!http://stackoverflow.com/questions/1932946/c-creating-array-where-the-array-value-has-multiple-objects-and-each-one-has-a/1932967#1932967Comment by Dave Markle on C# - Creating array where the array value has multiple objects and each one has a value tooDave Markle2009-12-19T15:45:32Z2009-12-19T15:45:32Z@Hellfrost: no it's not. It's absolutely clear and absolutely defined and absolutely uses static typing. This is not dynamic typing. This is not "duck typing" either. http://stackoverflow.com/questions/1933005/virtual-box-vs-cygwinComment by Dave Markle on Virtual Box Vs. CygwinDave Markle2009-12-19T14:28:52Z2009-12-19T14:28:52ZMaybe, but I certainly wouldn't vote to close it. It's being asked by a programmer in the context of learning programming on a different platform. You wouldn't close a question about using a programming tool? http://stackoverflow.com/questions/1750311/list-of-multicore-embedded-cpusComment by Dave Markle on List of multicore embedded CPUsDave Markle2009-12-19T00:39:05Z2009-12-19T00:39:05ZRidiculous that this is closed. Ridiculous. Just because you might not understand why it's interesting doesn't mean it should be closed. It means you should either move on to another question or watch it for responses and maybe learn something.http://stackoverflow.com/questions/396789/is-web-browser-discrimination-okay/396794#396794Comment by Dave Markle on Is Web Browser "Discrimination" Okay?Dave Markle2009-12-18T12:07:44Z2009-12-18T12:07:44ZLet me post a caveat: A large glowing throbbing hot pink sign that pops up and detects whether you are using IE6, and then redirects to the IE8 download site is, IMO, perfectly acceptable. IE6 must die at all costs.http://stackoverflow.com/questions/1897455/advice-on-using-a-web-server-as-a-cache/1897462#1897462Comment by Dave Markle on Advice on using a web server as a cacheDave Markle2009-12-18T00:57:43Z2009-12-18T00:57:43Zwhat, are you having people talking smack about your solution at the office?http://stackoverflow.com/questions/1891376/asp-net-in-visual-studio-2008-code-re-arranging/1891409#1891409Comment by Dave Markle on ASP.NET in Visual Studio 2008 code re-arrangingDave Markle2009-12-16T02:16:14Z2009-12-16T02:16:14ZI would edit this to say that these blocks are to be avoided when using ASP.NET WebForms. ASP.NET MVC makes liberal use of them, and to great effect IMO.http://stackoverflow.com/questions/1900602/ajax-slowdown-because-of-virus-scanners-or-active-network-filtering/1900616#1900616Comment by Dave Markle on AJAX slowdown because of virus scanners or active network filtering?Dave Markle2009-12-14T12:46:27Z2009-12-14T12:46:27ZOr, "it doesn't even work at all!"http://stackoverflow.com/questions/1900687/do-website-owners-actually-get-something-from-donate-meComment by Dave Markle on Do website owners actually get something from "Donate me"?Dave Markle2009-12-14T12:40:19Z2009-12-14T12:40:19ZGiven the usefulness of what you have described, the answer (you may have to convert this from dollars to your local currency) is $0.00.http://stackoverflow.com/questions/1894406/in-what-conditions-we-can-use-css-selector/1894419#1894419Comment by Dave Markle on in what conditions we can use css * selector?Dave Markle2009-12-12T19:44:05Z2009-12-12T19:44:05Zsigh... IE6 kills me.http://stackoverflow.com/questions/1893572/sql-server-slowly-hogging-ram-where-do-i-start-to-optimise/1893588#1893588Comment by Dave Markle on SQL Server slowly hogging RAM, where do i start to optimise?Dave Markle2009-12-12T17:15:57Z2009-12-12T17:15:57ZCould be, or maybe not. Check the connections first. If you see that you aren't leaking connections, you have my permission to set the max memory down to a lower level.http://stackoverflow.com/questions/1893572/sql-server-slowly-hogging-ram-where-do-i-start-to-optimise/1893606#1893606Comment by Dave Markle on SQL Server slowly hogging RAM, where do i start to optimise?Dave Markle2009-12-12T17:15:17Z2009-12-12T17:15:17Z@unknown(google): AWE and PAE are hacks that MS had to put in in order for SQL Server to use more than 2 or 3GB of RAM when you run it on a 32-bit server.http://stackoverflow.com/questions/1893795/emacs-newbie-question-how-to-search-within-a-regionComment by Dave Markle on emacs newbie question - how to search within a regionDave Markle2009-12-12T15:52:28Z2009-12-12T15:52:28ZAny time you ask a question on emacs, be prepared for the answer, "just use vi". ;-)http://stackoverflow.com/questions/1893768/how-to-use-css-to-style-xhtml-markup-made-only-of-divs-like-a-tableComment by Dave Markle on How to use css to style xhtml markup made only of divs like a tableDave Markle2009-12-12T15:51:47Z2009-12-12T15:51:47ZThe answer is simple. Just enter the question "How to make table like look with such type of code with help of css" into Stackoverflow.com and wait for the result to come out. Do NOT read a book on basic CSS. DO NOT attempt to understand the concepts.