User Andrew Peters - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T15:26:45Zhttp://stackoverflow.com/feeds/user/608http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1527975/questions-regarding-entity-framework-ddd/1528294#1528294-1Answer by Andrew Peters for Questions regarding Entity Framework + DDDAndrew Peters2009-10-06T21:52:18Z2009-10-06T21:52:18Z<p>Here is a sample:</p>
<p><a href="http://dataguidance.codeplex.com/" rel="nofollow">http://dataguidance.codeplex.com/</a></p>
http://stackoverflow.com/questions/1527063/transactional-in-memory-edits-with-entity-framework/1527322#15273220Answer by Andrew Peters for Transactional (In-Memory) Edits with Entity FrameworkAndrew Peters2009-10-06T18:38:32Z2009-10-06T18:38:32Z<p>You can implement IEditableObject on your entities.</p>
<p>See <a href="http://www.codeplex.com/efcontrib/Wiki/View.aspx?title=Editable%20Business%20Objects&referringTitle=PostSharp4EF" rel="nofollow">here</a> for an example.</p>
http://stackoverflow.com/questions/7685/merge-sort-a-linked-list1Merge Sort a Linked ListAndrew Peters2008-08-11T11:43:27Z2009-09-29T10:59:16Z
<p>I was recently brushing up on some fundamentals and found merge sorting a linked list to be a pretty good challenge. If you have a good implementation then show it off here.</p>
http://stackoverflow.com/questions/1377020/can-you-programmatically-detect-pluralizations-of-english-words-and-derive-the-s/1377204#13772041Answer by Andrew Peters for Can you programmatically detect pluralizations of English words, and derive the singular form?Andrew Peters2009-09-04T04:17:59Z2009-09-04T04:17:59Z<p>You can take a look at <a href="http://andrewpeters.net/inflectornet" rel="nofollow">Inflector.net</a> - my port of Rails' inflection class.</p>
http://stackoverflow.com/questions/1331017/check-if-insertss-or-updates-was-successful-in-entity-framework/1331453#13314530Answer by Andrew Peters for Check if insert(s)s or update(s) was successful in Entity FrameworkAndrew Peters2009-08-25T22:52:23Z2009-08-25T22:52:23Z<p>Yes, if there is no exception you may assume that the statements executed successfully.</p>
http://stackoverflow.com/questions/1329784/entity-framework-dynamic-sql/1329978#13299781Answer by Andrew Peters for Entity Framework - dynamic sqlAndrew Peters2009-08-25T18:11:09Z2009-08-25T18:11:09Z<p>A common pattern for handling optional search parameters is to do something like this:</p>
<pre><code>string p = null;
var q = from o in dataContext.Products
where ((o.Name == p) || (p == null))
select o;
</code></pre>
http://stackoverflow.com/questions/563030/where-can-i-find-a-good-nhibernate-and-asp-net-mvc-reference-application/1317129#13171290Answer by Andrew Peters for Where can I find a good NHibernate and ASP.NET MVC Reference ApplicationAndrew Peters2009-08-22T21:49:20Z2009-08-22T21:49:20Z<p>Here is another one:</p>
<p><a href="http://dataguidance.codeplex.com/" rel="nofollow">http://dataguidance.codeplex.com/</a></p>
http://stackoverflow.com/questions/1195547/how-can-i-inject-behavior-into-entity-framework-object-constructors/1195716#11957162Answer by Andrew Peters for How can I Inject Behavior into Entity Framework Object Constructors?Andrew Peters2009-07-28T18:00:47Z2009-07-28T18:00:47Z<p>Can you pass in the strategy at the time the calculation is performed?</p>
<pre><code>myEntity.Calculate(myStrategy);
</code></pre>
<p>How about invert the relationship between the strategy and the entity?</p>
<pre><code>myStrategy.Calculate(myEntity);
</code></pre>
<p>Or, DI the strategy using property injection?</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/498292#4982924Answer by Andrew Peters for Hidden Features of C#?Andrew Peters2009-01-31T04:50:20Z2009-07-23T18:51:26Z<p>Cool trick to emulate functional "wildcard" arguments (like '_' in Haskell) when using lambdas:</p>
<pre><code>(_, b, __) => b.DoStuff(); // only interested in b here
</code></pre>
http://stackoverflow.com/questions/340218/entity-framework-and-asp-net-mvc/1096185#10961850Answer by Andrew Peters for entity framework and asp.net mvcAndrew Peters2009-07-08T05:08:05Z2009-07-08T05:08:05Z<p>We're currently working on an EF 4.0 Reference Implementation using ASP.NET MVC at the front end. Check it out <a href="http://dataguidance.codeplex.com/" rel="nofollow">here</a> - We'd love to hear your feedback.</p>
http://stackoverflow.com/questions/1044434/is-it-possible-to-set-the-actual-sql-that-the-entity-framework-provider-will-exec/1046746#10467460Answer by Andrew Peters for Is it possible to set the actual SQL that the entity framework provider will execute?Andrew Peters2009-06-25T23:49:15Z2009-06-25T23:49:15Z<p>Yes, one way is with the <a href="http://msdn.microsoft.com/en-us/library/system.data.objects.objectquery.totracestring.aspx" rel="nofollow">ObjectQuery.ToTraceString</a> API.</p>
http://stackoverflow.com/questions/1028697/ef-in-real-life-i-want-to-believe-does-anyone-have-good-pointers-to-non-trivial/1029528#10295281Answer by Andrew Peters for EF in real life, I want to believe (Does anyone have good pointers to non-trivial EF 1.0(3.5) or 4.0 examples?)...Andrew Peters2009-06-22T21:37:06Z2009-06-22T21:37:06Z<p>See <a href="http://dataguidance.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28998" rel="nofollow">http://dataguidance.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28998</a> for the official EF v4 Reference Implementation (features ASP.NET MVC front end).</p>
http://stackoverflow.com/questions/950491/looking-for-examples-of-asp-net-mvc-applications-with-the-entity-framework/951584#9515841Answer by Andrew Peters for Looking for examples of ASP.NET MVC applications with the Entity FrameworkAndrew Peters2009-06-04T16:17:28Z2009-06-22T21:34:35Z<p>The EF team, in conjunction with P&P, are currently in the process of developing an EF (version 4) data access reference implementation that uses ASP.NET MVC as the front-end.</p>
<p>The project will be made available iteratively on CodePlex here:</p>
<p><a href="http://dataguidance.codeplex.com/" rel="nofollow">http://dataguidance.codeplex.com/</a></p>
<p>We haven't yet made our first source drop but it will be happening within the next couple of weeks.</p>
<p>UPDATE: We have now dropped code - please be advised that it should be considered alpha quality and is subject to change.</p>
http://stackoverflow.com/questions/987305/eager-loading-aggregate-roots-with-entity-framework/987729#9877292Answer by Andrew Peters for Eager Loading aggregate roots with Entity FrameworkAndrew Peters2009-06-12T16:43:53Z2009-06-12T16:43:53Z<p>Try something like this instead:</p>
<p>query = LoadDoors(query, x => x.Door);</p>
<p>Where LoadX returns the result of calling Include.</p>
http://stackoverflow.com/questions/710383/mocking-entity-framework-context/710639#7106392Answer by Andrew Peters for Mocking Entity Framework ContextAndrew Peters2009-04-02T16:58:21Z2009-04-02T16:58:21Z<p>A well known way of doing this is to use the Repository pattern. This acts as a layer over your concrete data access implementation and provides a place to inject test doubles.</p>
http://stackoverflow.com/questions/660599/rails-per-request-hash/660731#6607310Answer by Andrew Peters for Rails per-request hash?Andrew Peters2009-03-19T01:12:54Z2009-03-19T01:12:54Z<p>Have you considered flash? It uses Session but is automatically cleared.</p>
http://stackoverflow.com/questions/645518/how-can-i-hide-a-panel-that-is-on-a-splitcontainer/645524#645524-1Answer by Andrew Peters for How can I hide a panel that is on a SplitContainer?Andrew Peters2009-03-14T06:27:56Z2009-03-14T06:27:56Z<p>Try setting panel2.Visible = false.</p>
http://stackoverflow.com/questions/644904/how-to-speed-up-vs2008-with-resharper-startup/644914#6449142Answer by Andrew Peters for How to speed up VS2008 with Resharper startup?Andrew Peters2009-03-13T22:56:27Z2009-03-13T22:56:27Z<p>I think the best way would be to use an SSD drive or really fast disk drive. I don't have one though :-(</p>
http://stackoverflow.com/questions/644747/autofac-in-web-applications-where-should-i-store-the-container-for-easy-access/644753#6447531Answer by Andrew Peters for Autofac in web applications, where should I store the container for easy accessAndrew Peters2009-03-13T21:52:29Z2009-03-13T21:52:29Z<p>The usual way of doing this is to store the container in a static variable in your Global app class.</p>
http://stackoverflow.com/questions/559846/asp-net-mvc-updatemodel-empty-property/640397#6403974Answer by Andrew Peters for ASP.NET MVC UpdateModel empty propertyAndrew Peters2009-03-12T20:41:46Z2009-03-13T04:24:48Z<p>I just discovered this behavior (by accident thanks to a check constraint) and I think it is a mistake. I wonder how many devs are now inadvertently saving empty strings into their db instead of null? :-)</p>
<p>Anyway, I'm going to explore this a bit more and see if there is a better solution.</p>
<p>Update:</p>
<p>Here is a solution:</p>
<pre><code>using System.ComponentModel;
using System.Web.Mvc;
namespace CustomerWebsite.Mvc
{
public sealed class EmptyStringToNullModelBinder : DefaultModelBinder
{
protected override void SetProperty(ControllerContext controllerContext,
ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor, object value)
{
if ((value != null)
&& (value.GetType() == typeof(string)
&& ((string)value).Length == 0))
{
value = null;
}
base.SetProperty(controllerContext, bindingContext, propertyDescriptor, value);
}
}
}
</code></pre>
<p>And in Application_Start put this:</p>
<pre><code>ModelBinders.Binders.DefaultBinder = new EmptyStringToNullModelBinder();
</code></pre>
http://stackoverflow.com/questions/641365/c-reuse-event-handler-good-practice/641441#6414410Answer by Andrew Peters for c# reuse event handler good practiceAndrew Peters2009-03-13T04:16:34Z2009-03-13T04:16:34Z<p>You should make a User Control that encapsulates your custom Grid. That way, all of your behavior will be encapsulated and reusable.</p>
http://stackoverflow.com/questions/638391/entity-framework-get-currentcontext/639279#6392792Answer by Andrew Peters for Entity Framework get CurrentContextAndrew Peters2009-03-12T15:56:28Z2009-03-12T15:56:28Z<p>You need to pass the context to this method, or, better yet, rather than pass in width and height, pass in the size object itself.</p>
http://stackoverflow.com/questions/609257/linq-to-entity-framework-selecting-whole-tables/609270#6092704Answer by Andrew Peters for Linq To Entity Framework selecting whole tablesAndrew Peters2009-03-04T04:50:19Z2009-03-04T04:50:19Z<p>Remove the .AsEnumerable()s from the query as these are preventing the entire query being evaluated on the server.</p>
http://stackoverflow.com/questions/605012/how-do-i-do-a-contains-in-dlinq-with-a-list-of-items/605362#6053621Answer by Andrew Peters for How do I do a .Contains() in dlinq with a list of items?Andrew Peters2009-03-03T06:42:53Z2009-03-03T06:42:53Z<p>One way is to dynamically build a query as outlined here:</p>
<p><a href="http://andrewpeters.net/2007/04/24/dynamic-linq-queries-contains-operator/" rel="nofollow">http://andrewpeters.net/2007/04/24/dynamic-linq-queries-contains-operator/</a></p>
http://stackoverflow.com/questions/595920/ado-net-entity-framework-i-cant-see-foreign-key-property-in-model/596009#5960092Answer by Andrew Peters for ADO.NET Entity Framework i cant see Foreign Key Property in ModelAndrew Peters2009-02-27T18:33:49Z2009-02-27T18:33:49Z<p>EF v1 hides foreign keys because it views them as persistence artifacts not important to the domain model. See <a href="http://www.thedatafarm.com/blog/2007/09/11/EntityDataModelAssociationsWheresMyForeignKey.aspx" rel="nofollow">here</a> for a discussion.</p>
<p>EF v2, shipping with .NET 4, will include much better support for foreign keys in the model.</p>
http://stackoverflow.com/questions/589096/parsing-sql-code-in-c/589216#5892161Answer by Andrew Peters for Parsing SQL code in C#Andrew Peters2009-02-26T05:25:22Z2009-02-26T05:25:22Z<p>Try <a href="http://antlr.org" rel="nofollow">ANTLR</a> - There are a bunch of SQL grammars on there.</p>
http://stackoverflow.com/questions/588396/can-a-return-statement-prevent-a-using-statement-from-closing-a-connection-to-a-d/588410#5884101Answer by Andrew Peters for Can a return statement prevent a using statement from closing a connection to a database?Andrew Peters2009-02-25T23:32:53Z2009-02-25T23:32:53Z<p>No, connection.Close will always be called because internally <em>using</em> puts it in a try/finally block.</p>
<p>You also may want to consider connection pooling. Try wrapping your code in a TransactionScope.</p>
http://stackoverflow.com/questions/575190/is-there-an-in-memory-provider-for-entity-framework/575459#5754591Answer by Andrew Peters for Is there an in-memory provider for Entity Framework?Andrew Peters2009-02-22T18:54:53Z2009-02-22T18:54:53Z<p>A better approach here might be to use the Repository pattern to encapsulate your EF code. When testing your services you can use mocks or fakes. When testing your repositories you will want to hit the real DB to ensure that you are getting the results you expect.</p>
http://stackoverflow.com/questions/433022/adding-a-business-layer-to-ado-net-entity-framework/568284#568284-1Answer by Andrew Peters for Adding a Business Layer to ADO .NET Entity FrameworkAndrew Peters2009-02-20T04:30:08Z2009-02-20T04:30:08Z<p>Hi Bradley,</p>
<p>One way to do this would be like so:</p>
<ol>
<li>Define your AllBankAccounts property (possibly even make it private).</li>
<li>Define the BankAccounts property in the partial Person class. The property can be expressed in terms of AllBankAccounts using LINQ, i.e. AllBankAccounts.Where(a => !a.IsFrozen)</li>
<li>Define the FrozenBankAccounts property in the partial Person class like step 2.</li>
</ol>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/554731/ado-net-entity-framework-generates-unexpected-problem-inserts/567103#5671031Answer by Andrew Peters for ADO.NET Entity Framework generates unexpected, problem INSERTsAndrew Peters2009-02-19T20:54:15Z2009-02-19T20:54:15Z<p>I haven't had a detailed look at the code but the first thing to consider is that you shouldn't need to call DeleteObject at every level of your hierarchy. EF like other O/RMs tracks objects and their associations for you. </p>
<p>Let's say, for example, that you have a parent->child 1..* relationship. If you query the parent, remove a child object from the parents Children collection and then call SaveChanges(), EF will generate the appropriate DELETE SQL statements for you - You do not need to track this yourself.</p>
<p>So, a better way to achieve your scenario would be to do this:</p>
<ol>
<li>Query the object hierarchy out of EF.</li>
<li>Bind that to your UI. Let your UI modify the in-memory objects as you see fit.</li>
<li>When you are done, call SaveChanges and let the EF figure out what to do.</li>
</ol>
<p>Let me know if that helps.</p>
http://stackoverflow.com/questions/1527063/transactional-in-memory-edits-with-entity-framework/1527322#1527322Comment by Andrew Peters on Transactional (In-Memory) Edits with Entity FrameworkAndrew Peters2009-10-06T21:53:54Z2009-10-06T21:53:54ZImplementing it by hand is pretty straightforward. I would try that first. http://stackoverflow.com/questions/710383/mocking-entity-framework-context/710639#710639Comment by Andrew Peters on Mocking Entity Framework ContextAndrew Peters2009-08-25T16:20:17Z2009-08-25T16:20:17ZThe ObjectContext should usually injected into repositories as a dependency - Repository and Unit of Work are orthogonal.http://stackoverflow.com/questions/1044434/is-it-possible-to-set-the-actual-sql-that-the-entity-framework-provider-will-exec/1046746#1046746Comment by Andrew Peters on Is it possible to set the actual SQL that the entity framework provider will execute?Andrew Peters2009-06-26T05:02:13Z2009-06-26T05:02:13ZSorry, misread that as "see". Yes, if EF v1 you can use stored procs to execute arbitrary SQL. See: <a href="http://msdn.microsoft.com/en-us/library/bb399203.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/987305/eager-loading-aggregate-roots-with-entity-framework/987729#987729Comment by Andrew Peters on Eager Loading aggregate roots with Entity FrameworkAndrew Peters2009-06-15T19:22:07Z2009-06-15T19:22:07Z@Bertvan because ReferenceEquals(q, q.Include("Foo")) == falsehttp://stackoverflow.com/questions/778726/how-do-you-avoid-duplication-of-validation-on-the-server-and-client-side/778746#778746Comment by Andrew Peters on How do you avoid duplication of validation on the server and client-side?Andrew Peters2009-04-22T19:29:30Z2009-04-22T19:29:30ZLOL - And +2 votes to boot!http://stackoverflow.com/questions/35322/bypass-forms-authentication-auto-redirect-to-login-how-to/35518#35518Comment by Andrew Peters on Bypass Forms Authentication auto redirect to login, How to?Andrew Peters2009-04-16T17:00:33Z2009-04-16T17:00:33ZThis does not help for the reasons outlined by TheDeeno.http://stackoverflow.com/questions/732573/best-design-practices-for-net-architecture-with-linq-to-sql-dal-necessary-can/732583#732583Comment by Andrew Peters on Best design practices for .NET architecture with LINQ to SQL (DAL necessary? Can we truly use POCOs? Design pattern to adopt?)Andrew Peters2009-04-09T05:04:25Z2009-04-09T05:04:25ZYes, the parallel model architecture in MVC Storefront <i>is</i> silly. I would go so far as to call it an anti-pattern. If you want pure PI then use NHibernate or EF v2 when it comes out. Otherwise, you can get close to POCO with L2S - EntityRef/Collection is the only thing you need to keep.http://stackoverflow.com/questions/280239/asp-net-mvc-with-entity-framework/280255#280255Comment by Andrew Peters on ASP.NET MVC with Entity FrameworkAndrew Peters2009-03-31T17:37:50Z2009-03-31T17:37:50ZLOL dude. It just has to be "explicit" <a href="http://blogs.msdn.com/jkowalski/archive/2008/05/12/transparent-lazy-loading-for-entity-framework-part-1.aspx" rel="nofollow">blogs.msdn.com/jkowalski/archive/…</a>http://stackoverflow.com/questions/280239/asp-net-mvc-with-entity-framework/280255#280255Comment by Andrew Peters on ASP.NET MVC with Entity FrameworkAndrew Peters2009-03-31T01:01:35Z2009-03-31T01:01:35ZNo, this a bad approach. It makes the Controller hard to test and also means the unit of work is not available outside of the Controller. The Session-per-request pattern mentioned below is better. EF v1 does support lazy loading - it just has to be explicit.
http://stackoverflow.com/questions/641365/c-reuse-event-handler-good-practice/641441#641441Comment by Andrew Peters on c# reuse event handler good practiceAndrew Peters2009-03-13T15:53:20Z2009-03-13T15:53:20ZIn this case it is being used 4 times - hence the code duplication.http://stackoverflow.com/questions/638391/entity-framework-get-currentcontext/639279#639279Comment by Andrew Peters on Entity Framework get CurrentContextAndrew Peters2009-03-12T16:10:14Z2009-03-12T16:10:14ZConsider this:
var myEntity = new MyEntity();
myEntity.AssignSize(1,2);
This is just one problem with coupling an entity to a particular context.http://stackoverflow.com/questions/605012/how-do-i-do-a-contains-in-dlinq-with-a-list-of-items/605362#605362Comment by Andrew Peters on How do I do a .Contains() in dlinq with a list of items?Andrew Peters2009-03-03T17:37:43Z2009-03-03T17:37:43ZBasically, you need to build a lambda expression of the form:
l => l.site_title == list[0] || l.site_title == list[1] ...http://stackoverflow.com/questions/605012/how-do-i-do-a-contains-in-dlinq-with-a-list-of-items/605362#605362Comment by Andrew Peters on How do I do a .Contains() in dlinq with a list of items?Andrew Peters2009-03-03T17:35:26Z2009-03-03T17:35:26ZSorry, that code is pretty old. Try Expression.Lambdahttp://stackoverflow.com/questions/554731/ado-net-entity-framework-generates-unexpected-problem-inserts/567103#567103Comment by Andrew Peters on ADO.NET Entity Framework generates unexpected, problem INSERTsAndrew Peters2009-02-20T17:30:56Z2009-02-20T17:30:56ZTo delete a child object, it is sufficient to remove it from the object graph. Similarly, to add a new object, add it to the object graph. EF is tracking the graph so will know what to do when you call SaveChanges. Perhaps try writing a unit test outside of your UI to get a feel for how this works.http://stackoverflow.com/questions/313/net-migrations-engine/5550#5550Comment by Andrew Peters on .NET Migrations EngineAndrew Peters2009-02-18T17:26:19Z2009-02-18T17:26:19ZYep, unfortunately this happens all the time on SO :-/