User Daniel Auger - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T00:30:20Zhttp://stackoverflow.com/feeds/user/1644http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1913125/is-it-possible-to-enable-disable-lazy-loading-for-all-entities-across-a-nhibernat/1917011#19170110Answer by Daniel Auger for Is it possible to enable/disable lazy loading for all entities across a NHibernate Session?Daniel Auger2009-12-16T19:22:20Z2009-12-16T19:27:55Z<p>If you don't want to use the stateless session for whatever reason, you can eager fetch in your query.</p>
<p><strong>Criteria:</strong><br>
.SetFetchMode("ClassName", FetchMode.Eager)</p>
<p><strong><a href="http://nhforge.org/wikis/howtonh/lazy-loading-eager-loading.aspx" rel="nofollow">HQL</a>:</strong></p>
<pre><code>string hql = "from Order o" +
" inner join fetch o.OrderLines" +
" inner join fetch o.Customer" +
" where o.Id=:id";
</code></pre>
http://stackoverflow.com/questions/1902748/net-dependency-management-and-tagging-branching/1904120#19041201Answer by Daniel Auger for .NET Dependency Management and Tagging/BranchingDaniel Auger2009-12-14T23:00:50Z2009-12-14T23:05:55Z<p>I've tried solving this problem several ways over the years, and I can honestly say there is no best solution.</p>
<p>My team is currently in a huge development phase and everyone basically needs to be working off of the latest and greatest of the shared libs at any given time. This being the case we have a folder on everyone's C: drive called SharedLibs\Latest that is automatically synced up with the latest development release of each of our shared libraries. Every project that should be drinking from the firehose has absolute file references to this folder. As people push out new versions of the shared libs, the individual projects end up picking them up transparently.</p>
<p>In addition to the latest folder, we have a SharedLibs\Releases folder which has a hierarchy of folders named for each version of each shared lib. As projects mature and get towards release candidate phase, the shared lib references are pointed to these stable folders.</p>
<p>The biggest downside to this is that this structure needs to be in place for any project to build. If someone wants to build an app 10 years from now, they will need this structure. It is important to note that these folders need to exist on the build/CI server as well.</p>
<p>Previous to doing this, each solution had a lib folder that was under source control containing the binaries. Each project owner was tasked with propagating new shared dlls. Since most people owned several projects, things often fell through the cracks for the projects that were still in the non-stable phase. Additionally TFS didn't seem to track changes to binary files that well. If TFS was better at tracking dlls we probably would have used a shared libs solution / project instead of the file system approach we are taking now. </p>
http://stackoverflow.com/questions/1898152/how-can-i-improve-my-object-oriented-programming/1898223#18982233Answer by Daniel Auger for How can I improve my Object Oriented Programming?Daniel Auger2009-12-13T23:39:42Z2009-12-13T23:39:42Z<p>I recommend you read <a href="http://rads.stackoverflow.com/amzn/click/0735619654" rel="nofollow">Object Thinking</a> by <a href="http://polymorphicpodcast.com/shows/objectthinking/" rel="nofollow">David West</a>. There is very little code in the book, but a lot of talk about how to model.</p>
<p>A couple things I wish someone would have told me when I was starting out are:</p>
<ol>
<li>When modeling objects, you should focus on behaviors more than the shape of the data.</li>
<li>Although many OO tutorials model real world things such as animals and vehicles, many of the things we model in OO software are concepts and constructs (things that have no physical representation in the real world).</li>
</ol>
http://stackoverflow.com/questions/1893899/nhibernate-without-log4net/1894202#18942020Answer by Daniel Auger for NHibernate without log4net?Daniel Auger2009-12-12T17:56:54Z2009-12-12T18:02:00Z<p>Yes it's currently a hard dependency. I think you can get what you want by creating an appender for log4net and then injecting your real logger into that appender. So essentially you'll have log4net log to your logging api which will use the real logger you inject.</p>
<p>You may also want to look at this semi-related question:
<a href="http://stackoverflow.com/questions/667438/using-enterprise-library-logging-application-block-in-nhibernate/667482#667482">Using Enterprise Library Logging Application Block in NHibernate</a></p>
http://stackoverflow.com/questions/1861537/nhibernate-how-to-retrieve-an-entity-that-has-all-entities-with-a-certain-pred/1862133#18621330Answer by Daniel Auger for NHibernate: how to retrieve an entity that "has" all entities with a certain predicate in CriteriaDaniel Auger2009-12-07T19:00:05Z2009-12-07T19:00:05Z<p>I'm not 100% sure, but I think <a href="http://nhforge.org/doc/nh/en/index.html#querycriteria-examples" rel="nofollow">query by example</a> may be what you want.</p>
http://stackoverflow.com/questions/1713166/how-to-avoid-nhibernate-nonuniqueobjectexception/1719162#17191620Answer by Daniel Auger for How to avoid NHibernate.NonUniqueObjectExceptionDaniel Auger2009-11-12T00:53:03Z2009-11-12T01:18:54Z<p>Since TagName is the ID, you are running up against NHibernate's identity map. Its identity map is already aware of an object with the same ID, so it's giving you that exception. </p>
<p>You might want to try something where you look to see if that Tag already exists in that session and if so, then associate that prexisting Tag with the 2nd post. </p>
<p>Psuedo-code example:</p>
<pre><code>var tag = session.Get<Tag>("Tag 1");
if (tag != null)
{
post.AddTag(tag);
}
else
{
post.AddTag(new Tag("Tag 1"));
}
</code></pre>
<p>This blog posting will give you a detailed explanation:
<a href="http://ayende.com/Blog/archive/2009/11/08/nhibernate-ndash-cross-session-operations.aspx" rel="nofollow">NHibernate - Cross session operations</a></p>
http://stackoverflow.com/questions/288805/how-does-mstest-visual-studio-2008-team-test-decide-test-method-execution-order1How Does MSTEST/Visual Studio 2008 Team Test Decide Test Method Execution Order?Daniel Auger2008-11-13T23:52:28Z2009-11-05T14:46:31Z
<p>I was under the impression that the test methods in a unit test class <a href="http://www.eggheadcafe.com/articles/visual_studio_2005_unit_test_order_methods.asp" rel="nofollow">would be executed in the order that they appear in the class file.</a> Apparently this is not true. It also doesn't appear to be purely based off of alphabetical order either. How does MSTEST decide execution order?</p>
<p>EDIT: I was able to track down the answer after digging a bit. See below.</p>
http://stackoverflow.com/questions/385469/best-practice-for-storing-and-referencing-dll-libraries/385587#3855870Answer by Daniel Auger for Best practice for storing and referencing DLL libraries?Daniel Auger2008-12-22T04:49:50Z2009-10-30T19:37:35Z<p><strong>Rule of thumb</strong>: If the project isn't a part of the solution, reference released dlls from a source controlled /binshare or /lib directory that is under your solution's source control tree. All external dependencies should have versioned DLLs that go in this /binshare directory. </p>
<p>I understand what your co-worker is doing in regards to convenience. However, that developer's approach is diametrically opposed to proper configuration/build management.</p>
<p>Example: If you use the MS Data Application Block as a dependency in your application, you should reference a properly released binary, instead of getting latest from MS's dev source trunk. </p>
http://stackoverflow.com/questions/1650887/mixing-nhibernate-with-3-tier-developing/1651390#16513902Answer by Daniel Auger for mixing NHibernate with 3 tier developingDaniel Auger2009-10-30T18:00:25Z2009-10-30T18:00:25Z<p>You may want to check out the <a href="http://fabiomaulo.blogspot.com/2009/10/nhibernate-wcf-session-per-call-in.html" rel="nofollow">uNhAddIns WCF project</a>. It uses session-per-call, as that is the recommended way to go with WCF.</p>
<p>You are correct in saying that there is no lazy load via WCF. You need to fill out the object graph to the level you need and then send it on its way. If your service layer isn't object oriented in behavior NHibernate may be overkill. That's a tough call without a lot more context. </p>
http://stackoverflow.com/questions/1587851/mvvm-pattern-for-asp-net-webforms/1602172#16021721Answer by Daniel Auger for MVVM pattern for ASP.NET Webforms ?Daniel Auger2009-10-21T16:59:37Z2009-10-21T16:59:37Z<p>A lot of MVC'ers are doing something akin to a view model in the sense that instead of returning domain objects to the controller, they have a flattened data structure (a view model) of all the data needed for that view regardless of how many domain objects worth of data it contains. In that regard a view model is very doable with MVC, and I'm sure it could be leveraged in webforms as well. However, there is no way that I know of to do the two way databinding / commanding / event aggregation that is associated with MVVM in WPF.</p>
<p>Although I don't know of any webform implimentations you could try some of the approaches described here:<br />
<a href="http://www.lostechies.com/blogs/jimmy%5Fbogard/archive/2009/04/24/how-we-do-mvc.aspx" rel="nofollow">Jimmy Bogard - How we do MVC</a></p>
<p>Here is a very interesting article on how to do MVP in winforms:<br />
<a href="http://adamjwolf.com/post/2009/01/Castle-Windsors-MVP-and-AspNet.aspx" rel="nofollow">Castle Windsor's MVP with ASP.NET</a></p>
<p>Maybe you can create a hybrid of these two approaches using webforms.</p>
http://stackoverflow.com/questions/1582744/client-access-to-sql-server-over-the-internet/1582833#15828332Answer by Daniel Auger for Client Access to SQL Server over the InternetDaniel Auger2009-10-17T18:09:50Z2009-10-17T18:20:24Z<p>In my opinion, you need a pretty compelling reason to allow direct connections to your database from outside of your network. Allowing remote Sql connections can be a big security risk if not done correctly. The industry learned this the hard way with the Sql Slammer virus etc...</p>
<p>Winforms/Wpf Client App -> WCF -> Database works really well in the real world. Also, hiding data access behind a service for your remote apps allows you to change your database and related objects without any client changes as long as the data shape passed back and forth remains the same. </p>
<p>On the flip side, any apps that have to serve a lot of concurrent users from one logical instance (such as web applications/sites go) should directly connect to the database.</p>
<p>In either instance, I don't really see the value of having another set of web services to hide the database from your WCF and Web Apps unless we are talking about a huge disparate enterprise system. </p>
http://stackoverflow.com/questions/1574221/where-should-i-be-creating-the-entity-objects/1576055#15760550Answer by Daniel Auger for Where should I be creating the entity objects?Daniel Auger2009-10-16T01:45:06Z2009-10-16T01:45:06Z<p>I usually let the DAO know about the entity assembly and return a fully hydrated entity. Why? Because, usually the DAO only exists to support that entity. If its role is isn't bound to supporting that entity or related entities, then you may want to look at an intermediate layer.</p>
http://stackoverflow.com/questions/1538977/build-server-for-wpf-app-does-team-city-have-an-advantage-over-cruisecontrol-ne0Build server for WPF app - does Team City have an advantage over CruiseControl.NET?Daniel Auger2009-10-08T16:33:34Z2009-10-08T17:57:02Z
<p>First off: This is not meant to be an argumentative question or flamebait. I'm genuinely curious about this as I am about to start a build server evaluation process. Also, this question is not a general "which is the better build server" question. There are plenty of those on SO already. I'm wondering about a very specific aspect.</p>
<p>The other day I saw something come across my twitter stream that read something like this:
"If you want to run WPF unit tests, Team City is your best option."</p>
<p>I've done a little bit of digging but I am unable to find anything that backs that statement up. Can anyone shine some light on this, or is that statement pure fiction? If it is true, how does TFS hold up in this regard.</p>
<p>If it matters - we are using TFS 2008 for source control, and MSTest for unit tests. A test library/framework for testing the visual WPF bits has not been chosen yet.</p>
http://stackoverflow.com/questions/390771/list-of-best-c64-programming-books-and-courseware5List of Best C64 Programming Books and CoursewareDaniel Auger2008-12-24T04:49:59Z2009-09-29T08:49:41Z
<p>What books and/or courseware should be considered "must read" or definitive on the subject of C64 programming?
<a href="http://stackoverflow.com/questions/327327/best-resource-for-serious-commodore-64-programming">This</a> question asks about the knowledge that <strong>isn't</strong> tied up in books. However a sea of C64 programming books and courseware were published that are currently available only via physical media.</p>
http://stackoverflow.com/questions/123461/can-tdd-work-in-a-architect-implementer-environment2Can TDD Work in a Architect/Implementer Environment?Daniel Auger2008-09-23T19:59:09Z2009-09-24T02:28:37Z
<p>This has been on my mind lately as I can clearly see the benefits of TDD. I can very easily see how tests could drive a good design if the developer has an idea of what the functionality should be. This may be an overly simplistic statement, but from everything that I’ve read, TDD advocates that you have no design beyond your project architecture and framework choices. That being said, I’d have to guess that even the most hardcore TDDers don’t have a completely blank mental design slate when they start working</p>
<p>My question is this: Can TDD be used in an environment where a senior programmer/designer/architect does a class and/or component design and then hands that design off to a junior developer to implement? In this case the tests would not be the primary driver of the design. I suppose the implementing programmer could implement that design using a test first approach. In that case is it still TDD, or is it something that would be better called Test Driven Implementation? Would something like this work in the real world, or do you think you'd end up with the worst parts of TDD and design up front? </p>
<p>UPDATE:</p>
<p>I came across Roy Osherove's blog <a href="http://weblogs.asp.net/rosherove/archive/2007/10/08/the-various-meanings-of-tdd.aspx" rel="nofollow">describing the various meanings of TDD</a>:</p>
<blockquote>
<p>What are the possible meanings of TDD?</p>
<ol>
<li><strong>Test Driven Development</strong>: the idea
of writing your code in a test first
manner. You may already have an
existing design in place. </li>
<li><strong>Test Oriented Development</strong>: Having unit
tests of integration tests in your
code and write them out either
before or after our write the code.
Your code has lots of tests. You
recognize the value of tests but you
don't necessarily write them before
you write the code. Design probably
exists before you write the code </li>
<li><strong>Test Driven Design(the eXtreme
Programming way)</strong>: The idea of using
a test-first approach as a fully
fledged design technique, where
tests are a bonus but the idea is to
drive full design from little to no
design whatsoever. You design as you
go. </li>
<li><strong>Test Driven Development and
Design</strong>: using the test-first
technique to drive new code and
changes, while also allowing it to
change and evolve your design as an
added bonus. You may already have
some design in place before starting
to code, but it could very well
change because the tests point out
various smells.</li>
</ol>
</blockquote>
<p>After reading that, it is fairly clear that the Test Driven Design flavor of TDD probably isn't the best fit in this environment, but the Test Driven Development flavor would probably fit.</p>
http://stackoverflow.com/questions/1468559/how-can-i-shrink-the-size-of-my-mono-touch-application/1468814#14688141Answer by Daniel Auger for How can I shrink the size of my mono touch applicationDaniel Auger2009-09-23T22:12:36Z2009-09-24T00:46:46Z<p>Mono apps on the IPhone include the Mono runtime so you can't really get much smaller than 5mb. See <a href="http://stackoverflow.com/questions/1444777/how-big-is-an-objective-c-iphone-app-vs-a-monotouch-app">this related question</a></p>
<p>EDIT: As per Miguel's answer, it appears the minimum footprint is about to shrink considerably. </p>
http://stackoverflow.com/questions/1468573/sharing-domain-model-with-wcf-service/1468715#14687150Answer by Daniel Auger for Sharing domain model with WCF serviceDaniel Auger2009-09-23T21:52:12Z2009-09-23T23:22:19Z<p>I personally frown on directly passing domain objects directly through WCF. As Krzysztof said, it's about a data contract not a contract about the behavior of the the thing you are passing over the wire. </p>
<p>I typically do this:</p>
<ul>
<li>Define the data contracts in their own assembly</li>
<li>The service has a reference to both the data contracts assembly and the business entity assemblies.</li>
<li>Create extension methods in the service namespace that map the entities to their corresponding data contracts and vice versa.</li>
</ul>
<p>Putting the conceptual purity of what a "Data Contract" is aside, If you begin to pass entities around you are setting up your shared entity to pulled in different design directions by each side of the WCF boundary. Inevitably you'll end up with behaviors that only belong to one side, or even worse - have to expose methods that conceptually do the same thing but in a different way for each side of the WCF boundary. It can potentially get very messy over the long term. </p>
http://stackoverflow.com/questions/1466739/can-a-wcf-service-w-basichttpbinding-without-a-mex-endpoint-be-exploited-by-abso1Can a WCF service w/ BasicHttpBinding without a MEX Endpoint be exploited by absolute strangers?Daniel Auger2009-09-23T15:28:02Z2009-09-23T16:57:29Z
<p>From what I understand: If you don't have a MEX endpoint / WSDL, your service is basically non-discoverable. Only people who have knowledge of your data contract should be able to consume your service.</p>
<p>Does this assertion hold water, or are there ways for malicious denizens of the internet to figure out how to invoke/consume services that have no MEX endpoint?</p>
<p>EDIT: As Andrew pointed out, this strategy should not be considered to be truly secure. I'm wondering more along the lines of if it is safe from random abuse during a QA phase with external consumers. </p>
http://stackoverflow.com/questions/1422882/can-anyone-recall-my-favorite-childhood-programming-book/1423608#14236081Answer by Daniel Auger for Can anyone recall my favorite childhood programming book?Daniel Auger2009-09-14T20:01:50Z2009-09-14T20:01:50Z<p>Could it be <a href="http://www.librarything.com/work/7632676" rel="nofollow">Computer Programming in BASIC for everyone</a>?</p>
http://stackoverflow.com/questions/1367087/why-are-database-features-being-ignored-and-instead-reinvented-in-the-middle-tie/1371110#13711102Answer by Daniel Auger for Why are database features being ignored, and instead reinvented in the middle tier?Daniel Auger2009-09-03T02:13:37Z2009-09-12T14:49:47Z<p>First off: any developer using an ORM is naive if S/he thinks using an ORM negates having to have SQL skills. Most ORMs that generate SQL vary the SQL emitted depending on how the object queries are constructed. The developer will need to analyze the SQL to see if they should change any of the object queries. </p>
<p>Short answer: A lot of those features aren't practical for OO development. I know that DBAs don't like to hear that but, it's the truth. Those features are good for edge cases and most good ORMs such as N/Hibernate allow you to provide SQL for those edge cases.</p>
<p>When it comes to being mostly delegated to CRUD:</p>
<p>Long answer: I think the RDBMS world is going through maturity growing pains, and is finding it's place in the world. Truth: OOP is older than RDBMS. OOP is just getting out of it's growing pains and maturing. I think SQL as a language is very mature, but the idea of what a RDBMS should handle is just getting settled. The RDBMS was the business logic holder for most web apps until Java and C# came around. I think we are just starting to feel this correction now. </p>
<p>That being said, I don't think any ORM designer is going to tell you that the quality of the sql statements fed to the RDBMS don't matter. </p>
<p>When it comes to non-CRUD
I don't have an answer here. Most shops I know of still use the DB for ETL/etc...</p>
http://stackoverflow.com/questions/15310/optimizing-the-pdf-export-of-huge-reports-in-sql-reporting-services-20050Optimizing the PDF Export of Huge Reports in Sql Reporting Services 2005Daniel Auger2008-08-18T22:19:16Z2009-09-11T17:22:46Z
<p>First off I understand that it is a horrible idea to run extremely large/long running reports. I am aware that Microsoft has a rule of thumb stating that a SSRS report should take no longer than 30 seconds to execute. However sometimes gargantuan reports are a preferred evil due to external forces such complying with state laws.</p>
<p>At my place of employment, we have an asp.net (2.0) app that we have migrated from Crystal Reports to SSRS. Due to the large user base and complex reporting UI requirements we have a set of screens that accepts user inputted parameters and creates schedules to be run over night. Since the application supports multiple reporting frameworks we do not use the scheduling/snapshot facilities of SSRS. All of the reports in the system are generated by a scheduled console app which takes user entered parameters and generates the reports with the corresponding reporting solutions the reports were created with. In the case of SSRS reports, the console app generates the SSRS reports and exports them as PDFs via the SSRS web service API. </p>
<p>So far SSRS has been much easier to deal with than Crystal with the exception of a certain 25,000 page report that we have recently converted from crystal reports to SSRS. The SSRS server is a 64bit 2003 server with 32 gigs of ram running SSRS 2005. All of our smaller reports work fantastically, but we are having trouble with our larger reports such as this one. Unfortunately, we can't seem to generate the aforemention report through the web service API. The following error occurs roughly 30-35 minutes into the generation/export:</p>
<p>Exception Message: The underlying connection was closed: An unexpected error occurred on a receive.</p>
<p>The web service call is something I'm sure you all have seen before: </p>
<pre><code>data = rs.Render(this.ReportPath, this.ExportFormat, null, deviceInfo,
selectedParameters, null, null, out encoding, out mimeType, out usedParameters,
out warnings, out streamIds);
</code></pre>
<p>The odd thing is that this report will run/render/export if the report is run directly on the reporting server using the report manager. The proc that produces the data for the report runs for about 5 minutes. The report renders in SSRS native format in the browser/viewer after about 12 minutes. Exporting to pdf through the browser/viewer in the report manager takes an additional 55 minutes. This works reliably and it produces a whopping 1.03gb pdf.</p>
<p>Here are some of the more obvious things I've tried to get the report working via the web service API: </p>
<ul>
<li>set the HttpRuntime ExecutionTimeout
value to 3 hours on the report
server</li>
<li>disabled http keep alives on the report server</li>
<li>increased the script timeout on the report server</li>
<li>set the report to never time out on the server</li>
<li>set the report timeout to several hours on the client call </li>
</ul>
<p>From the tweaks I have tried, I am fairly comfortable saying that any timeout issues have been eliminated. </p>
<p>Based off of my research of the error message, I believe that the web service API does not send chunked responses by default. This means that it tries to send all 1.3gb over the wire in one response. At a certain point, IIS throws in the towel. Unfortunately the API abstracts away web service configuration so I can't seem to find a way to enable response chunking. </p>
<ol>
<li>Does anyone know of anyway to reduce/optimize the PDF export phase and or the size of the PDF without lowering the total page count?</li>
<li>Is there a way to turn on response chunking for SSRS?</li>
<li>Does anyone else have any other theories as to why this runs on the server but not through the API?</li>
</ol>
<p>EDIT: After reading kcrumley's post I began to take a look at the average page size by taking file size / page count. Interestingly enough on smaller reports the math works out so that each page is roughly 5K. Interestingly, when the report gets larger this "average" increases. An 8000 page report for example is averaging over 40K/page. Very odd. I will also add that the number of records per page is set except for the last page in each grouping, so it's not a case where some pages have more records than another. </p>
http://stackoverflow.com/questions/1401302/database-independence-with-nhibernate/1402201#14022011Answer by Daniel Auger for Database independence with NHibernate?Daniel Auger2009-09-09T21:27:21Z2009-09-09T23:42:35Z<p>If you are using stored procedures, then yes, you'll have to port them to each backend. You may be able to get away with defining paramaterized sql statements in the NHibernate config, but it would probably still be difficult to come up with statements that are database agnostic.</p>
<p>The easiest way is to let NHibernate generate your SQL, and just change the database dialect in the NHibernate config depending on which DB you are using. But based off of your situation, I think the answer is that you will have to port your procedures.</p>
<p>To put it another way - using stored procedures takes away NHibernate's ability to be used with a different database without having to do some work.</p>
http://stackoverflow.com/questions/1377413/hierarchical-queries-in-linq/1379054#13790540Answer by Daniel Auger for Hierarchical queries in LINQDaniel Auger2009-09-04T12:53:12Z2009-09-04T12:59:15Z<p>It appears that linq2sql cannot handle more than one table span efficiently (by design?):</p>
<p><a href="http://codebetter.com/blogs/david.hayden/archive/2007/08/06/linq-to-sql-query-tuning-appears-to-break-down-in-more-advanced-scenarios.aspx" rel="nofollow">http://codebetter.com/blogs/david.hayden/archive/2007/08/06/linq-to-sql-query-tuning-appears-to-break-down-in-more-advanced-scenarios.aspx</a></p>
<p><a href="http://social.msdn.microsoft.com/forums/en-US/adodotnetentityframework/thread/23bc2a58-ff1e-4857-81ae-507bb1a2754d/" rel="nofollow">http://social.msdn.microsoft.com/forums/en-US/adodotnetentityframework/thread/23bc2a58-ff1e-4857-81ae-507bb1a2754d/</a></p>
http://stackoverflow.com/questions/1364851/nhibernate-hilo-id-generator-is-performing-a-round-trip-to-the-database-per-row-i/1365306#13653060Answer by Daniel Auger for NHibernate HiLo ID generator is performing a round-trip to the database per-row insertedDaniel Auger2009-09-02T00:21:44Z2009-09-02T15:31:44Z<p>Do you mean you are seeing a round trip for each insert to go get a new high value for the ID? If so are you using a new instance of the SessionFactory on each operation? The SessionFactory is responsible for managing the retrieval of the high value. Typically you should only have one SessionFactory per application instance (via singleton or IoC container).</p>
http://stackoverflow.com/questions/1337751/help-me-to-connect-inheritance-and-relational-concepts/1337883#13378833Answer by Daniel Auger for Help me to connect inheritance and relational conceptsDaniel Auger2009-08-26T22:27:35Z2009-08-26T22:43:36Z<p>I'd argue that the inheritance model in the question is flawed. It's too literal, or based in the real world. Yes, it could be argued that I am an Administrator in the real world and therefore an Administrator <em>is a</em> Person. However, object design and inheritance should be based more off of expressed and shared behaviors in the code space. I'd go more the route that a User has a Role. Administrator is a Role, or a an instance of a Role set to a certain state. A User is not a Person (your batch job may need a user account for example).</p>
<p>I recommend reading Object Thinking by David West for a good intro to object design. He doesn't cover the Object Relation Mismatch however, but people have already given many links to resources on that topic.</p>
http://stackoverflow.com/questions/1337565/avoiding-if-statements/1337758#13377580Answer by Daniel Auger for avoiding if statementsDaniel Auger2009-08-26T22:01:22Z2009-08-26T22:01:22Z<p>I've been following the anti-if talk lately and it does sound like extreme / hyperbolic rhetoric to me. However I think there is truth in this statement: <em>often the logic of an if statement can be more appropriately implemented via polymorphism.</em> I think it is good to keep that in mind every time you right an if statement. That being said, I think the if statement is still a core logic structure, and it should not be feared or avoided as a tenet.</p>
http://stackoverflow.com/questions/1324003/how-can-i-re-instantiate-dynamic-asp-net-user-controls-without-using-a-database/1324195#13241952Answer by Daniel Auger for How can I re-instantiate dynamic ASP.NET user controls without using a database?Daniel Auger2009-08-24T19:18:55Z2009-08-25T18:52:36Z<p>You could store the bare minimum of what you need to know to recreate the controls in a collection held in session. Session is available during the init phases of the page.</p>
<p>EDIT Ok... here is an example for you. It consists of: </p>
<p>Default.aspx, cs<br />
- panel to store user controls<br />
- "Add Control Button" which will add a user control each time it is clicked</p>
<p>TimeTeller.ascx, cs<br />
- has a method called SetTime which sets a label on the control to a specified time.</p>
<p>Default.aspx </p>
<pre><code><%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="DynamicControlTest._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Panel ID="pnlDynamicControls" runat="server">
</asp:Panel>
<br />
<asp:Button ID="btnAddControl" runat="server" Text="Add User Control"
onclick="btnAddControl_Click" />
</div>
</form>
</body>
</html>
</code></pre>
<p>Default.aspx.cs: </p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace DynamicControlTest
{
public partial class _Default : System.Web.UI.Page
{
Dictionary<string, string> myControlList; // ID, Control ascx path
protected void Page_Load(object sender, EventArgs e)
{
}
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
if (!IsPostBack)
{
myControlList = new Dictionary<string, string>();
Session["myControlList"] = myControlList;
}
else
{
myControlList = (Dictionary<string, string>)Session["myControlList"];
foreach (var registeredControlID in myControlList.Keys)
{
UserControl controlToAdd = new UserControl();
controlToAdd = (UserControl)controlToAdd.LoadControl(myControlList[registeredControlID]);
controlToAdd.ID = registeredControlID;
pnlDynamicControls.Controls.Add(controlToAdd);
}
}
}
protected void btnAddControl_Click(object sender, EventArgs e)
{
UserControl controlToAdd = new UserControl();
controlToAdd = (UserControl)controlToAdd.LoadControl("TimeTeller.ascx");
// Set a value to prove viewstate is working
((TimeTeller)controlToAdd).SetTime(DateTime.Now);
controlToAdd.ID = Guid.NewGuid().ToString(); // does not have to be a guid, just something unique to avoid name collision.
pnlDynamicControls.Controls.Add(controlToAdd);
myControlList.Add(controlToAdd.ID, controlToAdd.AppRelativeVirtualPath);
}
}
}
</code></pre>
<p>TimeTeller.ascx</p>
<pre><code><%@ Control Language="C#" AutoEventWireup="true" CodeBehind="TimeTeller.ascx.cs" Inherits="DynamicControlTest.TimeTeller" %>
<asp:Label ID="lblTime" runat="server"/>
</code></pre>
<p>TimeTeller.ascx.cs </p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace DynamicControlTest
{
public partial class TimeTeller : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public void SetTime(DateTime time)
{
lblTime.Text = time.ToString();
}
protected override void LoadViewState(object savedState)
{
base.LoadViewState(savedState);
lblTime.Text = (string)ViewState["lblTime"];
}
protected override object SaveViewState()
{
ViewState["lblTime"] = lblTime.Text;
return base.SaveViewState();
}
}
}
</code></pre>
<p>As you can see, I still have to manage the internal viewstate of my user control, but the viewstate bag is being saved to the page and handed back to the control on postback. I think it is important to note that my solution is very close to David's. The only major difference in my example is that it's using session instead of viewstate to store the control info. This allows things to happen during the initialization phase. It is important to note that this solution takes up more server resources, therefore it may not be appropriate in some situations depending on your scaling strategy. </p>
http://stackoverflow.com/questions/1325120/linq-to-sql-for-a-new-project/1325303#13253031Answer by Daniel Auger for Linq to SQL for a new projectDaniel Auger2009-08-24T23:24:57Z2009-08-25T04:08:28Z<p>Linq to SQL works best in an active record / one table per class paradigm. If you need to span your class across several tables, or support complex inheritence then it may not be the best choice. Also, Linq to SQL doesn't natively support many-to-many relationships (there are workarounds).</p>
<p>If neither of those sound like they'd affect you, then Linq 2 SQL may be a good choice. It's a great lightweight data access strategy. </p>
<p>Linq to SQL can be used to implement the repository pattern very well given the above constraints. Google will turn up several viable Linq repository examples.</p>
http://stackoverflow.com/questions/1321113/how-to-prepare-for-interviews-when-you-are-experienced/1323762#13237620Answer by Daniel Auger for How to prepare for interviews when you are experienced?Daniel Auger2009-08-24T17:46:07Z2009-08-24T17:46:07Z<p>It never hurts to practice writing code with pen and paper, or a whiteboard because you never know if that situation is going to come up. </p>
http://stackoverflow.com/questions/1317691/checking-existence-of-lazy-loaded-child-without-getting-loading-in-fluent-nhiber/1318964#13189640Answer by Daniel Auger for Checking existence of lazy loaded child without getting/loading in Fluent NHibernateDaniel Auger2009-08-23T16:37:05Z2009-08-23T19:15:27Z<p><a href="http://djeeg.blogspot.com/2006/08/nhibernateutilisinitialized.html" rel="nofollow">NHibernateUtil.IsInitialized(...)</a> will tell you if a proxy object has been loaded. </p>
http://stackoverflow.com/questions/1901712/wcf-preventing-unauthorized-clients/1902000#1902000Comment by Daniel Auger on WCF - Preventing Unauthorized ClientsDaniel Auger2009-12-14T22:18:38Z2009-12-14T22:18:38ZMarc is correct. You have to have an actual machine to machine trust established for windows credentials to work over WCF.http://stackoverflow.com/questions/229627/entity-classes-decoupled-from-linq-to-sql-provider-for-implementing-the-repositor/230302#230302Comment by Daniel Auger on Entity classes decoupled from LINQ to SQL provider for implementing the Repository pattern. How?Daniel Auger2009-12-14T14:40:33Z2009-12-14T14:40:33ZCottsak, exactly. That's why this solution maps the linq2sql results to real domain objects before returning them.http://stackoverflow.com/questions/1538977/build-server-for-wpf-app-does-team-city-have-an-advantage-over-cruisecontrol-neComment by Daniel Auger on Build server for WPF app - does Team City have an advantage over CruiseControl.NET?Daniel Auger2009-11-15T17:00:23Z2009-11-15T17:00:23ZWe are in the process of giving TFS 2008 a go as our build server. Hopefully we'll have some White tests to try soon.http://stackoverflow.com/questions/385469/best-practice-for-storing-and-referencing-dll-libraries/385587#385587Comment by Daniel Auger on Best practice for storing and referencing DLL libraries?Daniel Auger2009-10-30T19:40:43Z2009-10-30T19:40:43Z:) I've added a comma to clear it up. Thanks!http://stackoverflow.com/questions/1602097/what-does-the-operator-do/1602153#1602153Comment by Daniel Auger on What does the => operator do?Daniel Auger2009-10-21T18:06:53Z2009-10-21T18:06:53Z They definitely cut down the total lines of code. Also, it can be argued that using lambdas with proven/reliable extension methods is potentially less error prone than doing it long hand. They do seem weird at first, but they become 2nd nature quickly.http://stackoverflow.com/questions/1582744/client-access-to-sql-server-over-the-internet/1582833#1582833Comment by Daniel Auger on Client Access to SQL Server over the InternetDaniel Auger2009-10-17T21:54:45Z2009-10-17T21:54:45ZThe WCF to WS call will introduce a tiny perf hit (milliseconds if that) if they are on the same network/intranet. The biggest overhead is probably going to be sending soap over the net instead of the strait tcp connection they used to have to the database. I'd say you'll be introducing at least a 10th of a second if not more per call. For most data entry app, it won't be something that a client will notice. If it was an online video game, it would be noticable. http://stackoverflow.com/questions/1538977/build-server-for-wpf-app-does-team-city-have-an-advantage-over-cruisecontrol-ne/1539222#1539222Comment by Daniel Auger on Build server for WPF app - does Team City have an advantage over CruiseControl.NET?Daniel Auger2009-10-08T17:17:30Z2009-10-08T17:17:30ZThanks for caching the title. I've updated it.http://stackoverflow.com/questions/1466739/can-a-wcf-service-w-basichttpbinding-without-a-mex-endpoint-be-exploited-by-abso/1466781#1466781Comment by Daniel Auger on Can a WCF service w/ BasicHttpBinding without a MEX Endpoint be exploited by absolute strangers?Daniel Auger2009-09-23T15:45:13Z2009-09-23T15:45:13ZI completely understand what you are saying about the level of security it provides.http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/455827#455827Comment by Daniel Auger on What was your first computer game that got you interested in computers?Daniel Auger2009-09-19T16:39:40Z2009-09-19T16:39:40ZThe xbox live arcade version of this game isn't too shabby.http://stackoverflow.com/questions/1367087/why-are-database-features-being-ignored-and-instead-reinvented-in-the-middle-tie/1371110#1371110Comment by Daniel Auger on Why are database features being ignored, and instead reinvented in the middle tier?Daniel Auger2009-09-12T14:50:46Z2009-09-12T14:50:46ZGood point. I have de-nastied the answer to some extent. I went with naive. http://stackoverflow.com/questions/1401302/database-independence-with-nhibernate/1402201#1402201Comment by Daniel Auger on Database independence with NHibernate?Daniel Auger2009-09-10T13:28:32Z2009-09-10T13:28:32ZIf you only have a handful of stored procedures and still use NHibernate for most sql operations, then I think it's still easier to move to another db than using stored procedures for everything. That being said, NHibernate does a lot more than generate sql. It tracks changes, manages object cache, object identity map, unit of work etc... Those features are just as useful as the SQL generation IMHO because they are very difficult/tedious to do by hand. NHibernate still has real value even in a 100% stored procedure environment. But yes, the more procs you have, the less easy it is to move DBs.http://stackoverflow.com/questions/1401058/hibernate-security-apprehension-hibernate-vs-stored-procedures/1401093#1401093Comment by Daniel Auger on Hibernate Security Apprehension: Hibernate vs. Stored ProceduresDaniel Auger2009-09-09T18:31:03Z2009-09-09T18:31:03ZGood answer. This is what one of the NHibernate devs suggests for scenarios where the DBA wants to lock down the DB. <a href="http://ayende.com/Blog/archive/2006/10/04/ShouldYouUseNHibernateWithStoredProcedure.aspx" rel="nofollow">ayende.com/Blog/archive/…</a>http://stackoverflow.com/questions/1367087/why-are-database-features-being-ignored-and-instead-reinvented-in-the-middle-tie/1369061#1369061Comment by Daniel Auger on Why are database features being ignored, and instead reinvented in the middle tier?Daniel Auger2009-09-03T02:07:31Z2009-09-03T02:07:31ZIt probably won't surprise you to learn that DDD developers now consider "one true database" to be an anti-pattern. The latest trend is multiple databases synced through anti-corruption layers. http://stackoverflow.com/questions/1337751/help-me-to-connect-inheritance-and-relational-concepts/1337824#1337824Comment by Daniel Auger on Help me to connect inheritance and relational conceptsDaniel Auger2009-08-26T22:36:40Z2009-08-26T22:36:40ZNot to mention that OOP is older than the relational model. http://stackoverflow.com/questions/1324003/how-can-i-re-instantiate-dynamic-asp-net-user-controls-without-using-a-database/1324195#1324195Comment by Daniel Auger on How can I re-instantiate dynamic ASP.NET user controls without using a database?Daniel Auger2009-08-25T19:55:11Z2009-08-25T19:55:11ZExcellent! Glad to hear I was able to be of help to you.