User Keith Patton - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T11:08:20Z http://stackoverflow.com/feeds/user/25255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/915727/using-entity-framework-as-data-access-layer/931000#931000 1 Answer by Keith Patton for Using Entity Framework as Data Access Layer Keith Patton 2009-05-31T01:12:54Z 2009-05-31T01:12:54Z <p><a href="http://blog.keithpatton.com/2009/05/30/Entity+Framework+POCO+Repository+Using+Visual+Studio+2010+Net+40+Beta+1.aspx" rel="nofollow">http://blog.keithpatton.com/2009/05/30/Entity+Framework+POCO+Repository+Using+Visual+Studio+2010+Net+40+Beta+1.aspx</a></p> <p>this is DDD inspired architecture i've just worked up with EF v4 which uses Unity IoC to inject an EF repository, hope that helps</p> http://stackoverflow.com/questions/929938/entity-framework-inheritance-tpt-tph-or-none/930991#930991 1 Answer by Keith Patton for Entity Framework inheritance: TPT, TPH or none? Keith Patton 2009-05-31T01:02:49Z 2009-05-31T01:02:49Z <p>Hi, When considering how to represent inheritance in the database, you need to consider a few things. </p> <p>If you have many different sub classes you can have a lot of extra joins in queries involving those more complex types which can hurt performance. One big advantage of TPH is that you query one table for all types in the hierarchy and this is a boon for performance, particularly for larger hierarchies. For this reason i tend to favour that approach in most scenarioes</p> <p>However, TPH means that you can no longer have NOT NULL fields for sub types as all fields for all types are in a single table, pushing the responsibility for data integrity towards your application. Although this may sound horrible in practice i haven't found this to be too big a restriction. </p> <p>However i would tend to use TPT if there were a lot of fields for each type and that the number of types in the hierarchy was likely to be small, meaning that performance was not so much of an issue with the joins, and you get better data integrity. </p> <p>Note that one of the advantages of EF and other ORMs is that you can change your mind down the track without impacting your application so the decision doesn't need to be completely carved in stone. </p> <p>In your example, it doesn't appear to have an inheritance relationship, it looks like a one to many from the address type to the addresses</p> <p>This would be represented between your classes something like the following:</p> <p>Address.AddressType AddressType.Addresses</p> http://stackoverflow.com/questions/173996/whats-the-next-piece-of-open-source-software-that-microsoft-should-embrace 6 What's the next piece of open source software that Microsoft should embrace? Keith Patton 2008-10-06T11:53:06Z 2009-01-17T22:50:58Z <p>After the recent announcement by Scott Guthrie that JQuery would receive official support from Microsoft (<a href="http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx</a>), many people see that as the heralding of a new dawn. </p> <p>We missed out on NUnit (MsTest), NDoc (Sandcastle) and NHibernate (Linq to SQL/Entity Framework) for sure, but what do you think should be embraced next?</p> http://stackoverflow.com/questions/295124/using-versioned-net-assemblies/295142#295142 2 Answer by Keith Patton for Using versioned .Net assemblies Keith Patton 2008-11-17T09:05:42Z 2008-11-17T09:05:42Z <p>Hi, A good post about the options for this can be found here: <a href="http://kevin-berridge.blogspot.com/2008/01/two-versions-of-same-shared-assembly.html" rel="nofollow">http://kevin-berridge.blogspot.com/2008/01/two-versions-of-same-shared-assembly.html</a> </p> http://stackoverflow.com/questions/228268/wcf-wshttpbinding-and-disabling-anonymous-access 3 wcf wsHttpBinding and disabling anonymous access Keith Patton 2008-10-23T01:58:03Z 2008-11-05T17:13:04Z <p><a href="http://blogs.msdn.com/drnick/archive/2007/03/23/preventing-anonymous-access.aspx" rel="nofollow">http://blogs.msdn.com/drnick/archive/2007/03/23/preventing-anonymous-access.aspx</a> </p> <p>Can someone clarify whether it is possible to use wsHttpBinding in WCF and disable anonymous access in IIS without transport (ssl) or message security being required?</p> http://stackoverflow.com/questions/228268/wcf-wshttpbinding-and-disabling-anonymous-access/232142#232142 0 Answer by Keith Patton for wcf wsHttpBinding and disabling anonymous access Keith Patton 2008-10-24T01:01:01Z 2008-10-24T01:01:01Z <p>we want to use windows integrated security. If you disable anonymous access in IIS and allow just windows, you cannot seem to use wsHttpBinding with WCF without using some security mode (e.g. transprot security which requires ssl). </p> <p>We only want to use windows authentication we don't necessarily want to use ssl for transport security. </p> <p>I was a little amazed this wasn't possible out of the box (as seemed to be confirmed by my link) as it would seem quite a common scenario for intern applications. </p> <p>We don't want to downgrade to basicHttpBinding which would support windows authentication only.</p> http://stackoverflow.com/questions/225370/on-xp-best-way-to-synchronize-files-and-folders/225381#225381 3 Answer by Keith Patton for On XP, best way to synchronize files and folders. Keith Patton 2008-10-22T11:35:38Z 2008-10-22T11:35:38Z <p><a href="http://allwaysync.com/" rel="nofollow">http://allwaysync.com/</a> - and it's free</p> http://stackoverflow.com/questions/77900/how-to-convert-all-controls-on-an-aspx-webform-to-a-read-only-equivalent/217738#217738 2 Answer by Keith Patton for How to convert all controls on an aspx webform to a read-only equivalent Keith Patton 2008-10-20T07:51:23Z 2008-10-20T07:51:23Z <p>Scott Mitchell posted a good article on this a while back. </p> <p><a href="http://aspnet.4guysfromrolla.com/articles/012506-1.aspx" rel="nofollow">http://aspnet.4guysfromrolla.com/articles/012506-1.aspx</a></p> <p>I've used this approach in the past in conjection with css on the 'read only' fields to make them look and work exactly like a label, even though they are in fact text boxes.</p> http://stackoverflow.com/questions/171892/example-websites-using-db4o 3 Example websites using db4o Keith Patton 2008-10-05T12:26:17Z 2008-10-13T07:47:10Z <p>I'm very impressed with my initial tests with db4o. However, i'm wondering just how many enterprise class websites are out there powered by db4o, i couldn't see any on the main website? </p> <p>I can't see any reason why db4o should not be used. There appears to be decent enough support for transactions and ways to handle concurrency for example. </p> <p>Anyone got a list of websites i could look at?</p> http://stackoverflow.com/questions/190257/best-role-based-access-control-rbac-database-model/193684#193684 0 Answer by Keith Patton for Best Role-Based Access Control (RBAC) database model Keith Patton 2008-10-11T05:20:51Z 2008-10-11T05:20:51Z <p>For .net applications you should look at something like Visual Guard <a href="http://www.visual-guard.com/" rel="nofollow">http://www.visual-guard.com/</a> to avoid having to handle permissions and roles from scratch. </p> <p>Also for .net, you have the membership and role providers and authorisation handled with configuration. <a href="http://www.odetocode.com/Articles/427.aspx" rel="nofollow">http://www.odetocode.com/Articles/427.aspx</a> </p> http://stackoverflow.com/questions/189799/factory-class-save-objects/189820#189820 5 Answer by Keith Patton for Factory Class - Save Objects Keith Patton 2008-10-10T01:24:57Z 2008-10-10T01:24:57Z <p>The factory class is a creational pattern that helps with creating new objects. </p> <p>There are various patterns which deal with persisting objects, one of which is data mapper <a href="http://martinfowler.com/eaaCatalog/dataMapper.html" rel="nofollow">http://martinfowler.com/eaaCatalog/dataMapper.html</a> </p> <p>This is often used in conjection with Repository <a href="http://martinfowler.com/eaaCatalog/repository.html" rel="nofollow">http://martinfowler.com/eaaCatalog/repository.html</a> </p> <p>You can use these patterns to abstract the database away from your domain/business objects, and access them from within your application to query and save objects. </p> <p>So the data mapper/repository is responsible for both aspects of persistence (populating from database, and saving back to database). </p> http://stackoverflow.com/questions/181671/backup-tool-for-microsoft-virtual-server-2005-r2/181794#181794 0 Answer by Keith Patton for Backup tool for Microsoft Virtual Server 2005 R2 ? Keith Patton 2008-10-08T08:15:33Z 2008-10-08T08:15:33Z <p><a href="http://technet.microsoft.com/en-us/library/cc720377.aspx" rel="nofollow">http://technet.microsoft.com/en-us/library/cc720377.aspx</a> <a href="http://support.microsoft.com/kb/867590" rel="nofollow">http://support.microsoft.com/kb/867590</a></p> <p>There appear to be a number of ways you can do this.</p> http://stackoverflow.com/questions/181509/what-is-the-most-important-feature-a-website-can-have/181789#181789 0 Answer by Keith Patton for What is the most important feature a website can have? Keith Patton 2008-10-08T08:11:10Z 2008-10-08T08:11:10Z <p>a url, you're not going to get very far without one</p> http://stackoverflow.com/questions/177905/how-to-avoid-an-anemic-domain-layer-and-still-have-rich-validation-and-business-r 5 How to avoid an anemic domain layer and still have rich validation and business rules Keith Patton 2008-10-07T10:41:56Z 2008-10-07T11:12:49Z <p>If you have a domain object, and you want to do something useful and central to that domain object's responsibility like ensure it is valid, you sometimes need to access the state of related objects in order to perform this validation. </p> <p>How to avoid the domain object needing to call out to a Repository or Data Access Layer? You can't always walk the collection relationships, even with lazy loading, because of performance, and you often want to execute queries in the domain object. You can dependency inject repository implementation into the domain, but not really pure and complicates testing.</p> <p>I've always relaxed things and allowed access out from domain to a repository using DI. I have seen no clear examples of how to have a 'pure' domain layer in a complex application which is not also anemic and has a service/application layer doing all the grunt and messing with what should be innards of the domain objects.</p> http://stackoverflow.com/questions/177838/is-it-possible-to-design-winforms-like-interface-in-webforms/177848#177848 0 Answer by Keith Patton for Is it possible to design winforms like interface in webforms Keith Patton 2008-10-07T10:14:06Z 2008-10-07T10:14:06Z <p>Web forms will generate pages in html, like the one you are looking at right now. Win forms applications generate interfaces using the windows operating system, so they look much better.</p> <p>It's not possible to get web forms to look like win forms, but you can get close if you use something like www.silverlight.net which allows you to embed a rich client experience within a web browser on multiple platforms</p> http://stackoverflow.com/questions/108598/entity-framework-how-to-return-a-base-type-from-l2e/177416#177416 2 Answer by Keith Patton for Entity Framework: how to return a base type from L2E Keith Patton 2008-10-07T06:50:47Z 2008-10-07T06:50:47Z <p>Why don't you apply an extension method on IQueryable&lt; Entry > called ApplyBaseEntryFilter() which would apply this filter and return an IQueryable&lt; Entry >. </p> <p>This is an example of how to reuse linq query fragments. Using extension methods on IQueryable&lt; Entity > is a great way to re-use queries as you should neve rneed to copy and paste query fragments around your application, hope that helps.</p> http://stackoverflow.com/questions/83153/entity-framework-and-application-architecture-loose-coupling-etc/177410#177410 1 Answer by Keith Patton for Entity Framework and Application Architecture (loose coupling, etc) Keith Patton 2008-10-07T06:46:08Z 2008-10-07T06:46:08Z <p>I'm not aware of any ORM that deals gracefully with n-tier solutions where you want to have platform independence. The EF works well when everything is happening within an ObjectContext, when you have an n-tier solution (physical separation, WCF/XML Web Service calls) you have to do some plumbing to get the objects behaving correctly. </p> <p>You can achieve loose coupling by using a Repository pattern to separate out the api dependencies on the Ef (<a href="http://blog.keithpatton.com/2008/05/29/Polymorphic+Repository+For+ADONet+Entity+Framework.aspx" rel="nofollow">http://blog.keithpatton.com/2008/05/29/Polymorphic+Repository+For+ADONet+Entity+Framework.aspx</a>). However, if you are using your EF classes within the UI layer directly, you will have a dependency on certain types like EntityReference, EntityKey and EntityObject, unless you decide to delve into the world of getting EF to behave with pure C# classes (POCO) which seems more trouble than it's worth to me. </p> http://stackoverflow.com/questions/174163/is-the-entity-framework-basically-another-crud-code-generator/177391#177391 2 Answer by Keith Patton for Is the Entity Framework basically another CRUD code generator? Keith Patton 2008-10-07T06:31:59Z 2008-10-07T06:31:59Z <p>The Entity Framework is suitable for all applications which would benefit from having an ORM (object relational mapping) layer. Daniel Simmons post goes into detail on this. <a href="http://blogs.msdn.com/dsimmons/archive/2008/05/17/why-use-the-entity-framework.aspx" rel="nofollow">http://blogs.msdn.com/dsimmons/archive/2008/05/17/why-use-the-entity-framework.aspx</a></p> <p>The EF allows you to have classes which contain business logic not related to persistence through usage of partial classes (this approach is not specific to the EF however). </p> <p>We have complex domain objects which do validation and support complex business rules which are also persisted in part via EF so this is more than CRUD at heart.</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/177388#177388 5 Answer by Keith Patton for What real life bad habits has programming given you? Keith Patton 2008-10-07T06:28:45Z 2008-10-07T06:28:45Z <p>&lt; answer >writing emails which have imaginary xml in them&lt; /answer >&lt; snigger / ></p> http://stackoverflow.com/questions/177177/for-what-type-of-project-is-entity-framework-currently-suited/177200#177200 1 Answer by Keith Patton for For what type of project is Entity Framework currently suited? Keith Patton 2008-10-07T04:00:50Z 2008-10-07T04:00:50Z <p>The Entity Framework is suitable for all applications which would benefit from having an ORM layer. Daniel Simmons post goes into detail on this. <a href="http://blogs.msdn.com/dsimmons/archive/2008/05/17/why-use-the-entity-framework.aspx" rel="nofollow">http://blogs.msdn.com/dsimmons/archive/2008/05/17/why-use-the-entity-framework.aspx</a> </p> <p>Entity Framework is similar in many ways to Linq for SQL but is not tied to MS SQL Server which Linq for SQL is. In addition EF supports more flexible mapping between your business/domain objects and the data tables. Linq for SQL supports more of a one to one mapping whereas EF supports ability to map a single object to multiple tables, or a single table to multiple objects. You do have decent designer support in both. </p> <p>In the open source world, NHibernate is probably the most advanced and in many ways is the more mature product (it certainly supports a wider array of features to some regard). But with EF you get the full support of MS and the close integration into the visual studio toolset and .net framework stack. EF also as a better Linq profider than NH at the time of writing.</p> <p>For a quick and dirty application i would lean towards Linq for SQL to be honest, if you can live with MS SQL Server and the mapping restrictions.</p> <p>For a more complex application i would use EF or NHibernate.</p> <p>You might be interested in a vote of confidence post i gave on the EF <a href="http://blog.keithpatton.com/2008/06/24/A+Vote+Of+Confidence+For+The+Entity+Framework.aspx" rel="nofollow">http://blog.keithpatton.com/2008/06/24/A+Vote+Of+Confidence+For+The+Entity+Framework.aspx</a></p> http://stackoverflow.com/questions/53264/what-is-the-most-beautiful-code-you-have-ever-seen-or-written/177020#177020 0 Answer by Keith Patton for What Is the most beautiful code you have ever seen or written? Keith Patton 2008-10-07T02:27:25Z 2008-10-07T02:27:25Z <p>bool statement = (statement == false);</p> http://stackoverflow.com/questions/61520/what-are-the-pros-and-cons-of-object-databases/173191#173191 0 Answer by Keith Patton for What are the pros and cons of object databases? Keith Patton 2008-10-06T04:21:38Z 2008-10-06T04:21:38Z <p>jodonnel, i dont' see how use of object databases couples application code to the data. You can still abstract your application from the OODB through using a Repository pattern and replace with an ORM backed SQL database if you design things properly. </p> <p>For an OO application, an OO database will provide a more natural fit for persisting objects. </p> <p>What's probably true is that you tie your data to your domain model, but then that's the crux! </p> <p>Wouldn't it be good to have a single way of looking at both data, business rules and processes using a domain centric view? </p> <p>So, a big pro is that an OODB matches how most modern, enterprise level object orientated software applications are designed, there is no extra effort to design a data layer using a different (relational) design. Cheaper to build and maintain, and in many cases general higher performance.</p> <p>Cons, just general lack of maturity and adoption i reckon...</p> http://stackoverflow.com/questions/170649/why-have-object-oriented-databases-not-been-succesful-yet/173178#173178 4 Answer by Keith Patton for Why have object oriented databases not been succesful (yet) ? Keith Patton 2008-10-06T04:12:21Z 2008-10-06T04:12:21Z <p>Well, it's strange isn't it? There is such a push towards domain driven design as the zenith of object orientated analysis and design, and there are enterprise patterns out there to leverage ORM systems to persist our objects. It just makes total sense to me that if your application DESIGN is object orientated and domain focussed at heart, that an OODB will greatly benefit your application. </p> <p>Aside from the issues around maturity and uptake, from a philosophical perspective an OODB would appear beneficial or an OO application. not having to maintain that mapping layer for starters;)</p> <p>But look, if you aren't doing domain drive design and use objects as data objects and like your stored procs, then you're not really going to get it;)</p> <p>There are a</p> <p>k</p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/173170#173170 4 Answer by Keith Patton for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? Keith Patton 2008-10-06T04:04:38Z 2008-10-06T04:04:38Z <p>I would say the fact that if you are considering something like db4o that they don't appear to have enterprise examples of powering websites, and are mostly in use for embedded applications.</p> <p>See my other post on this. (<a href="http://www.youtube.com/watch?v=N8XDscWleKw" rel="nofollow">http://www.youtube.com/watch?v=N8XDscWleKw</a>)</p> <p>Nothing technically in the way here, just adoption it seems. However, for speed of development, maintainence and design flexibility, OODBs are pretty unbeatable.</p> <p>heavy reporting etc. can be done by synching with a relational back end if required which i know db4o supports</p> http://stackoverflow.com/questions/171892/example-websites-using-db4o/172956#172956 0 Answer by Keith Patton for Example websites using db4o Keith Patton 2008-10-06T01:18:27Z 2008-10-06T01:18:27Z <p>It would be great if someone could post any public production websites powered by db4o!</p> http://stackoverflow.com/questions/21207/db4o-experiences/171901#171901 0 Answer by Keith Patton for db4o experiences? Keith Patton 2008-10-05T12:31:48Z 2008-10-05T12:31:48Z <p>Judah, it sounds like you are not using transparent activation, which is a feature of the latest production version (7.4)? Perhaps if you specified the version you are using as there may be other issues which are now resolved in the latest version?</p> http://stackoverflow.com/questions/96402/db4o-object-db/171898#171898 1 Answer by Keith Patton for DB4O Object DB Keith Patton 2008-10-05T12:30:03Z 2008-10-05T12:30:03Z <p>Are there known problems or lack of testing with concurrency in the latest version? What is the opinion of the db4o dev community on the wisdom or otherwise of using db4o in a web scenario. </p> http://stackoverflow.com/questions/181671/backup-tool-for-microsoft-virtual-server-2005-r2/181794#181794 Comment by Keith Patton on Backup tool for Microsoft Virtual Server 2005 R2 ? Keith Patton 2008-10-09T10:38:50Z 2008-10-09T10:38:50Z sorry, i provided an additional link to a KB article which i thgouth would be useful http://stackoverflow.com/questions/173996/whats-the-next-piece-of-open-source-software-that-microsoft-should-embrace/174018#174018 Comment by Keith Patton on What's the next piece of open source software that Microsoft should embrace? Keith Patton 2008-10-06T12:16:27Z 2008-10-06T12:16:27Z well, you have support for MoonLight (Silverlight using Mono for Linux support) <a href="http://weblogs.asp.net/scottgu/archive/2007/09/04/silverlight-1-0-released-and-silverlight-for-linux-announced.aspx" rel="nofollow">weblogs.asp.net/scottgu/archive/&hellip;</a>. http://stackoverflow.com/questions/173996/whats-the-next-piece-of-open-source-software-that-microsoft-should-embrace/174002#174002 Comment by Keith Patton on What's the next piece of open source software that Microsoft should embrace? Keith Patton 2008-10-06T12:14:38Z 2008-10-06T12:14:38Z To be fair, i believe Microsoft submits the specifications for the Common Language Infrastructure (CLI) to ECMA. http://stackoverflow.com/questions/173996/whats-the-next-piece-of-open-source-software-that-microsoft-should-embrace Comment by Keith Patton on What's the next piece of open source software that Microsoft should embrace? Keith Patton 2008-10-06T12:11:41Z 2008-10-06T12:11:41Z Yes, we have the Unity Application Block for Castle project i believe http://stackoverflow.com/questions/173996/whats-the-next-piece-of-open-source-software-that-microsoft-should-embrace/174001#174001 Comment by Keith Patton on What's the next piece of open source software that Microsoft should embrace? Keith Patton 2008-10-06T11:57:40Z 2008-10-06T11:57:40Z i walked into that one right? ;)