User Craig Stuntz - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T23:27:32Zhttp://stackoverflow.com/feeds/user/7714http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1778129/jqgrid-row-alternating-background/1786520#17865201Answer by Craig Stuntz for jqgrid row alternating backgroundCraig Stuntz2009-11-23T22:30:35Z2009-11-23T22:30:35Z<p>Look at the <code>altRows</code> and <code>altclass</code> <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3Aoptions" rel="nofollow">options</a>. Beware of the typically inconsistent capitalization! This does use the jQuery UI theme if you're using jqGrid 3.5 or higher.</p>
http://stackoverflow.com/questions/1780783/pass-data-arrays-into-jqgrid-table/1786505#17865050Answer by Craig Stuntz for Pass Data Arrays into jqgrid tableCraig Stuntz2009-11-23T22:28:38Z2009-11-23T22:28:38Z<p>I have a complete, working, demo solution <a href="http://blogs.teamb.com/craigstuntz/2009/04/27/38243/" rel="nofollow">here</a>. I also have a long series of posts on using MVC and jqGrid together starting <a href="http://blogs.teamb.com/craigstuntz/2009/04/14/38200/" rel="nofollow">here</a>. The demo solution includes <a href="http://blogs.teamb.com/craigstuntz/2009/04/15/38212/" rel="nofollow">LINQ extensions</a> so you can do stuff like this:</p>
<pre><code>public JsonResult ListGridData(int page, int rows, string search, string sidx, string sord)
{
var model = repository.SelectAll().ToJqGridData(page, rows, sidx + " " + sord, search,
new[] { "Column1", "Column2", "Column3" })
return Json(model);
}
</code></pre>
<p>Note that with MVC 2 you must include <code>JsonRequestBehavior.AllowGet</code> to use the <code>GET</code> HTTP verb. This is safe as the returned root data is not an array.</p>
http://stackoverflow.com/questions/1782530/alternate-background-row-in-jqgrid/1786469#17864690Answer by Craig Stuntz for alternate background row in jqgridCraig Stuntz2009-11-23T22:22:57Z2009-11-23T22:22:57Z<p>Look at the <code>altRows</code> and <code>altclass</code> <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3Aoptions" rel="nofollow">options</a>. Beware of the typically inconsistent capitalization!</p>
http://stackoverflow.com/questions/1785997/how-to-programically-select-top-row-of-jqgrid/1786282#17862821Answer by Craig Stuntz for How to programically select top row of JQGrid?Craig Stuntz2009-11-23T21:51:27Z2009-11-23T21:51:27Z<pre><code>$("#mygrid").getDataIds()[0];
</code></pre>
http://stackoverflow.com/questions/1783087/asp-net-mvc-merge-model-and-formcollection-into-object-to-pass-to-a-view/1783322#17833220Answer by Craig Stuntz for ASP.Net MVC - Merge model and formcollection into object to pass to a ViewCraig Stuntz2009-11-23T14:08:49Z2009-11-23T14:08:49Z<p>Here's what we do (with stuff not essential to this question removed):</p>
<pre><code>private ModelType UpdateModel(Guid id)
{
var dbData = (from m in Repository.SelectAll()
where m.Id == id
select new ModelType
{
Id = m.Id,
Data = m.Data
}).First();
return UpdateModel(dbData);
}
private ModelType UpdateModel(ModelType model)
{
//add other data for view:
model.SelectStuff = new SelectList( //...
// etc.
return model;
}
[HttpGet]
public ActionResult Update(Guid id)
{
return View(UpdateModel(id));
}
[HttpPost]
public ActionResult Update(ModelType model)
{
if (!ModelState.IsValid)
{
return View(UpdateModel(model));
}
// else post to repository
}
</code></pre>
http://stackoverflow.com/questions/1777815/entity-framework-error-when-submitting-empty-fields/1783267#17832671Answer by Craig Stuntz for Entity Framework error when submitting empty fieldsCraig Stuntz2009-11-23T13:58:08Z2009-11-23T13:58:08Z<p>Are you binding directly to the entity? Sure looks like it. So you have two choices:</p>
<ol>
<li>Write a custom model binder which translates null -> empty string.</li>
<li>Bind to an edit model which allows nulls instead, and then change this to empty string when you copy the values to the entity in the action.</li>
</ol>
<p>I'd choose #2, personally. I think you should always use view/edit models, and this is a great example of why.</p>
http://stackoverflow.com/questions/1782044/linqpad-4-0-and-code-only/1783239#17832390Answer by Craig Stuntz for linqpad 4.0 and code onlyCraig Stuntz2009-11-23T13:50:22Z2009-11-23T13:50:22Z<p>I think LINQPad will need to be updated to support this feature. Have you tried the <a href="http://www.linqpad.net/Beta.aspx" rel="nofollow">latest beta</a>? There's no reason LINQPad <em>couldn't</em> support code only, but it would need specific support for it. That said, I don't think LINQPad reads the EDMX directly; rather, I think it uses the generated code.</p>
http://stackoverflow.com/questions/584816/what-are-the-known-limitations-of-ado-net-entity-framework-designer/591753#5917531Answer by Craig Stuntz for What are the known limitations of ADO.NET entity framework designer?Craig Stuntz2009-02-26T18:12:02Z2009-11-23T13:40:23Z<p>Among other things,</p>
<ol>
<li>You can't map complex types at all. (<strong>Update</strong> Fixed in EF v4.)</li>
<li>You must map every column of a table in the storage schema.</li>
<li>Generalizing (2), you don't get a lot of control over the storage schema at all. What you mostly see is the client schema and the mapping <em>to</em> the storage schema.</li>
<li>If you delete a type from the diagram, it's difficult to put it back.</li>
</ol>
<p>I wrote some thoughts about the difference in philosophical approaches between the Entity Framework itself and the designer in <a href="http://blogs.teamb.com/craigstuntz/2008/07/17/37825/" rel="nofollow" title="The ADO.NET Entity Framework vs. NHibernate and Other ORMs">this post</a>.</p>
<p>I think that if you intend to do non-trivial/non-default things in the Entity Framework, you should get used to editing the EDMX. Most other ORMs do require editing XML at some point, for what it's worth.</p>
http://stackoverflow.com/questions/1771992/using-nerddinner-as-an-example-when-should-the-datacontext-be-disposed/1772184#17721841Answer by Craig Stuntz for using NerdDinner as an example, when should the DataContext be disposedCraig Stuntz2009-11-20T17:49:44Z2009-11-20T17:49:44Z<p>Make the Repository itself disposable. Dispose the data context when the repository is disposed. Override Controller.Dispose and dispose the repository there. The controller is still alive when the view is executed.</p>
http://stackoverflow.com/questions/1765423/problem-getting-guid-string-value-in-linq-to-entity-query/1771030#17710300Answer by Craig Stuntz for Problem getting GUID string value in Linq-To-Entity queryCraig Stuntz2009-11-20T15:03:35Z2009-11-20T15:03:35Z<p>One way would be to break apart the query into L2E and L2O:</p>
<pre><code>var q = from media in Current.Context.MediaSet
orderby media.CreatedDate
select new
{
Id = media.ID,
Time = media.CreatedTime
};
var media = (
from m in q.AsEnumerable()
select new Item
{
Link = "~/Media.aspx?id=" + q.Id.ToString,
Text = "Media",
Time = q.Time
}
).ToList();
</code></pre>
http://stackoverflow.com/questions/1770424/how-do-i-change-a-foreign-key-association-using-entity-framework/1770929#17709291Answer by Craig Stuntz for How do I change a foreign key association using Entity Framework?Craig Stuntz2009-11-20T14:51:22Z2009-11-20T14:51:22Z<p>First, let's answer the question without all your extra layers. In straight EF, you might do:</p>
<pre><code>var customer = Context.Customers.Where(c.Id == id).First();
customer.Class = Context.Classes.Where(c.Id == classId).First();
</code></pre>
<p>Now, how do you map that to your business objects? I can't debug your code without seeing it, but you need to expose some feature in your facade which maps business types to data layer types. I do this with expressions, but there are lots of solutions.</p>
http://stackoverflow.com/questions/1770586/is-an-outer-join-possible-with-linq-to-entity-framework/1770893#17708932Answer by Craig Stuntz for Is an outer join possible with Linq to Entity FrameworkCraig Stuntz2009-11-20T14:45:59Z2009-11-20T14:45:59Z<p>In LINQ to Entities, think in terms of relationships rather than SQL joins. Hence, the literal equivalent of a SQL outer join on an entity <code>Person</code> with a one to zero or one relationship to <code>CustomerInfo</code> would be:</p>
<pre><code>var q = from p in Context.People
select new
{
Name = p.Name,
IsPreferredCustomer = (bool?)p.CustomerInfo.IsPreferredCustomer
};
</code></pre>
<p>L2E will coalesce the join, so that if CustomerInfo is null then the whole expression evaluates to null. Hence the cast to a nullable bool, because the inferred type of non-nullable bool couldn't hold that result.</p>
<p>For one-to-many, you generally want a hierarchy, rather than a flat, SQL-style result set:</p>
<pre><code>var q = from o in Context.Orders
select new
{
OrderNo = o.OrderNo,
PartNumbers = from od in o.OrderDetails
select od.PartNumber
}
</code></pre>
<p>This is like a left join insofar as you still get orders with no details, but it's a graph like OO rather than a set like SQL.</p>
http://stackoverflow.com/questions/1760039/is-idataerrorinfo-ignored-during-model-validation-in-mvc-2/1763155#17631551Answer by Craig Stuntz for Is IDataErrorInfo ignored during model validation in MVC 2?Craig Stuntz2009-11-19T13:05:37Z2009-11-19T13:05:37Z<p>It's certainly in MVC 2 Preview 2. Look at <code>DefaultModelBinder.OnPropertyValidating</code> and <code>OnModelUpdated</code>.</p>
http://stackoverflow.com/questions/1758614/asp-net-mvc-how-to-create-custom-binding-for-models-when-using-linq-to-entities/1758656#17586561Answer by Craig Stuntz for asp.net mvc: how to create custom binding for models when using LINQ to EntitiesCraig Stuntz2009-11-18T19:59:49Z2009-11-18T19:59:49Z<p>We do this in the repository, not in the binder. We have an interface with the common fields (Modified on). We implement the interface in partial classes which we codegen for our entities using a T4 template.</p>
http://stackoverflow.com/questions/1757622/delete-a-relationship/1757769#17577692Answer by Craig Stuntz for Delete a relationship?Craig Stuntz2009-11-18T17:40:20Z2009-11-18T18:09:14Z<p>I don't do VB, so forgive me if my syntax isn't quite right.</p>
<p>To "attach":</p>
<pre><code>Person.Address = ad
</code></pre>
<p>To "detach"</p>
<pre><code>Person.Address = Nothing
</code></pre>
<p>If you want to delete, then do:</p>
<pre><code>Context.DeleteObject(ad)
</code></pre>
http://stackoverflow.com/questions/1756267/entity-framework-createdby-fields-not-updating/1757928#17579280Answer by Craig Stuntz for Entity Framework CreatedBy fields not updatingCraig Stuntz2009-11-18T18:05:06Z2009-11-18T18:05:06Z<p>Nothing in the EF will automatically populate these. You can do it on the DB server or in code (e.g., in a Repository).</p>
http://stackoverflow.com/questions/1756175/unable-to-generate-a-custom-path-in-asp-net-mvc-master-pages/1756502#17565021Answer by Craig Stuntz for Unable to generate a custom path in ASP.NET MVC Master Pages. Craig Stuntz2009-11-18T14:46:24Z2009-11-18T14:46:24Z<p>All the links in your question and in the solution posted thus far will fail if your site is deployed in a virtual folder. Instead, do:</p>
<pre><code><link href="<%= Url.Content("~/Content/Styles/" + Model.Style + ".css") %>" rel="stylesheet" type="text/css" />
</code></pre>
<p>This (1) fixes the problem in your question, and (2) allows your site to work in a virtual folder.</p>
http://stackoverflow.com/questions/1756390/checking-duplication-of-the-title-of-an-entity/1756488#17564881Answer by Craig Stuntz for checking duplication of the title of an entityCraig Stuntz2009-11-18T14:43:13Z2009-11-18T14:43:13Z<p>I presume you're using a DB server? Put a unique constraint on the DB column. Doing this in the repository or controller introduces concurrency issues (another transaction, which you can't see since it's not committed yet, could have already inserted a duplicate value). Constraints can see through this.</p>
http://stackoverflow.com/questions/1754272/entity-framework-with-sql-server-2000-apply-operator-issue/1756391#17563910Answer by Craig Stuntz for Entity Framework with SQL Server 2000 (APPLY Operator) issueCraig Stuntz2009-11-18T14:30:41Z2009-11-18T14:30:41Z<p>The problem is that you generated your model against a 2005 (or higher) DB. So the GUI designer put a <code>ProviderManifestToken</code> value of 2005 or 2008 into the EDMX. This causes the SQL Server provider to generate SQL optimized for those versions. To fix this:</p>
<ol>
<li>Right click your EDMX file.</li>
<li>Open with XML editor.</li>
<li>Search for <code>ProviderManifestToken</code></li>
<li>Change to 2000</li>
<li>Save and run.</li>
</ol>
http://stackoverflow.com/questions/1755340/validate-data-using-dataannotations-with-wpf-entity-framework/1756351#17563510Answer by Craig Stuntz for Validate data using DataAnnotations with WPF & Entity Framework?Craig Stuntz2009-11-18T14:25:34Z2009-11-18T14:25:34Z<p>Use a "buddy class". Number 4 in <a href="http://msdn.microsoft.com/en-us/library/ee256141%28VS.100%29.aspx" rel="nofollow" title="How to: Validate Model Data Using DataAnnotations Attributes">this how-to</a>.</p>
http://stackoverflow.com/questions/1751248/mvc-v2-preview-2-is-it-stable-enough-for-production-use/1751284#17512841Answer by Craig Stuntz for MVC v2 preview 2, Is it stable enough for production use?Craig Stuntz2009-11-17T19:46:32Z2009-11-17T19:46:32Z<p>We're not in production with it yet, but in development and testing almost since the day it was released we haven't found any regressions yet.</p>
http://stackoverflow.com/questions/1750946/allow-restful-delete-method-in-asp-net-mvc/1751165#17511651Answer by Craig Stuntz for Allow RESTful DELETE method in asp.net mvc?Craig Stuntz2009-11-17T19:25:45Z2009-11-17T19:25:45Z<p>MVC 2 has this built in. You don't need MVCContrib for it. See <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.htmlhelper.httpmethodoverride%28VS.100%29.aspx" rel="nofollow">HtmlHelper.HttpMethodOverride</a> and <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.httpdeleteattribute%28VS.100%29.aspx" rel="nofollow">HttpDelete</a>.</p>
http://stackoverflow.com/questions/1748402/deleting-multiple-records-in-asp-net-mvc-using-jqgrid/1748917#17489170Answer by Craig Stuntz for Deleting multiple records in ASP.NET MVC using jqGridCraig Stuntz2009-11-17T13:36:06Z2009-11-17T13:36:06Z<p>You can, but you have to write code for it:</p>
<pre><code>deleteSelected: function(grid) {
if (!grid.jqGrid) {
if (console) {
console.error("'grid' argument must be a jqGrid");
}
return;
}
var ids = grid.getGridParam('selarrrow');
var count = ids.length;
if (count == 0) return;
if (confirm("Delete these " + count + " records?")) {
$.post("DeleteMultiple",
{ ids: ids },
function() { grid.trigger("reloadGrid") },
"json");
}
}
[HttpPost]
public ActionResult DeleteMultiple(IEnumerable<Guid> ids)
{
if (!Request.IsAjaxRequest())
{
// we only support this via AJAX for now.
throw new InvalidOperationException();
}
if (!ids.Any())
{
// JsonError is an internal class which works with our Ajax error handling
return JsonError(null, "Cannot delete, because no records selected.");
}
var trans = Repository.StartTransaction();
foreach (var id in ids)
{
Repository.Delete(id);
}
trans.Commit();
return Json(true);
}
</code></pre>
http://stackoverflow.com/questions/1748428/partialview-as-string-jsonresult/1748891#17488911Answer by Craig Stuntz for PartialView as string + JsonResultCraig Stuntz2009-11-17T13:31:57Z2009-11-17T13:31:57Z<p>Seems to me like your <code>RenderViewToString</code> should be creating a <code>ViewUserControl</code> rather than a <code>ViewPage</code>.</p>
<p>Do note that what you're doing will make the <code>OnResultExecuting</code> on any Action filters happen <em>after</em> the view is rendered!</p>
http://stackoverflow.com/questions/1745226/should-i-create-urls-in-the-view-or-the-controler/1745365#17453652Answer by Craig Stuntz for Should i create urls in the view or the controler?Craig Stuntz2009-11-16T22:49:00Z2009-11-16T22:49:00Z<p>My $0.02: The <em>real</em> Separation of Concerns issue here is doing DB calls <strong>and</strong> generating URIs in the same method. Put the DB calls in the controller and generate the URI in the view. Something like this:</p>
<p>Controller:</p>
<pre><code>// stuff
var importantNum = (from d in Repository.SomeData
where d.Id == id
select new
{
Num = d.ImportantForUri
}).First().Num;
var model.LinkData = new RouteValueDictionary { { "Important", importantNum" },
{ "Constant", "Foo"} // etc
};
return View(model);
</code></pre>
<p>View:</p>
<pre><code><!-- stuff -->
<%= Html.ActionLink("Hi there", "ActionName", model.LinkData);
</code></pre>
http://stackoverflow.com/questions/1744813/asp-net-mvc-wrong-url-being-generated-by-url-action/1745036#17450362Answer by Craig Stuntz for Asp.Net MVC wrong URL being generated by Url.Action!Craig Stuntz2009-11-16T21:41:01Z2009-11-16T21:57:30Z<p>Don't use <code>Action</code>/<code>ActionLink</code> to generate a URI for a named route. Use <code>RouteLink</code>/<code>RouteUrl</code>, instead. It's faster, and it <em>never</em> fails to find the route you intend. Full explanation <a href="http://blogs.teamb.com/craigstuntz/2009/03/18/38085/" rel="nofollow" title="ASP.NET Routing and ASP.NET MVC">here</a>.</p>
http://stackoverflow.com/questions/1743961/adding-charset-to-all-asp-net-mvc-http-responses/1743997#17439970Answer by Craig Stuntz for Adding "charset" to all ASP.NET MVC HTTP responsesCraig Stuntz2009-11-16T18:33:55Z2009-11-16T18:33:55Z<p>You could write an attribute for it:</p>
<pre><code>public class CharsetAttribute : ActionFilterAttribute
{
public override void OnActionExecuted(ActionExecutedContext filterContext)
{
filterContext.HttpContext.Response.Headers["Content-Type"] += ";charset=utf-8";
}
}
</code></pre>
<p>Feel free to make it a bit smarter, but that's the general idea. Add it to your base controller class and your whole app is covered.</p>
http://stackoverflow.com/questions/1742660/interbase-sql-select-query-using-case/1742867#17428670Answer by Craig Stuntz for Interbase SQL SELECT query using CASECraig Stuntz2009-11-16T15:23:50Z2009-11-16T15:23:50Z<p><code>.gdb</code> and <code>.ib</code> are juast file extensions. They don't affect anything.</p>
<p>I'm guessing the problem here is case sensitivity. Per the "delimited identifier" feature of the SQL standard, if you use double quotes when you create the table, i.e.:</p>
<pre><code>CREATE TABLE "Users" (
"UserId" INTEGER NOT NULL PRIMARY KEY,
/* ... */
</code></pre>
<p>...then the identifier is case-sensitive. Having done this, you must therefore always use (1) delimiters (double quotes) and (2) the correct case whenever you do <em>anything</em> with the table.</p>
<p>Annoying, yes, but the SQL Standard requires it. SQL Dialect 3 is much more strict about enforcing the SQL Standard, including delimited identifiers.</p>
<p>To get around this, don't use double quotes when you create the table unless you actually want this "feature."</p>
http://stackoverflow.com/questions/1740053/how-to-validate-fields-when-calling-json-post-method-to-save-data/1742719#17427190Answer by Craig Stuntz for How to Validate fields when calling Json post method to save data?Craig Stuntz2009-11-16T15:03:47Z2009-11-16T15:03:47Z<p>This feature is built into the jQuery validator. But the validator requires a form. So:</p>
<ol>
<li>Add a <code>form</code> tag and a submit button to the page.</li>
<li>When calling <code>validate()</code>, <a href="http://docs.jquery.com/Plugins/Validation/validate#toptions" rel="nofollow">provide a <code>submitHandler</code> function</a> in the options which submits the form via AJAX. As recommended, we use <a href="http://www.malsup.com/jquery/form/#getting-started" rel="nofollow">AjaxForm</a> for this. There is sample code in the first link.</li>
</ol>
<p>In addition to working correctly with the validator, this solution allows for progressive enhancement and requires close to no code on your part.</p>
http://stackoverflow.com/questions/1726487/entity-framework-change-relationship-multiplicity/1731625#17316251Answer by Craig Stuntz for Entity Framework - Change Relationship MultiplicityCraig Stuntz2009-11-13T20:16:58Z2009-11-13T20:16:58Z<p>Make the PK of <code>Salesperson</code> itself a FK to <code>User</code>. The EF's GUI designer will then get the cardinality correct, since PKs are unique.</p>
http://stackoverflow.com/questions/1730272/linq-query-for-tag-system-search-for-multiple-tags/1730376#1730376Comment by Craig Stuntz on linq query for tag system - search for multiple tagsCraig Stuntz2009-11-25T16:10:50Z2009-11-25T16:10:50ZI would not make it part of the PK. As you've discovered, this makes FKs (even at the relational level) odd. One way is to use a separate, history table. Another is to use dedicated versioning features in the DB. A third way is to use an OLAP DB.http://stackoverflow.com/questions/657939/serialize-entity-framework-objects-into-json/658056#658056Comment by Craig Stuntz on Serialize Entity Framework objects into JSONCraig Stuntz2009-11-25T02:52:10Z2009-11-25T02:52:10ZSamuel, the default model binder can generally cope with EF types. But I prefer to deserialize to an edit-specific model, then map to the EF type.http://stackoverflow.com/questions/756204/what-is-the-easy-way-of-implementing-paging-in-asp-net-mvc/756217#756217Comment by Craig Stuntz on What is the easy way of implementing Paging in ASP.NET MVC?Craig Stuntz2009-11-24T18:59:22Z2009-11-24T18:59:22ZNote that Skip(0) is not free. <a href="http://blogs.teamb.com/craigstuntz/2009/06/10/38313/" rel="nofollow">blogs.teamb.com/craigstuntz/2009/…</a> Hence this incurs a performance penalty for the first (and most commonly requested) page in both EF and L2S 4.0.http://stackoverflow.com/questions/1730272/linq-query-for-tag-system-search-for-multiple-tags/1730376#1730376Comment by Craig Stuntz on linq query for tag system - search for multiple tagsCraig Stuntz2009-11-24T18:57:12Z2009-11-24T18:57:12ZI agree with bobwah; you should rethink your DB schema.http://stackoverflow.com/questions/1785997/how-to-programically-select-top-row-of-jqgrid/1786282#1786282Comment by Craig Stuntz on How to programically select top row of JQGrid?Craig Stuntz2009-11-24T03:03:07Z2009-11-24T03:03:07ZSam, the old syntax works, as well as the new API. I gave the former since it works on old and new.http://stackoverflow.com/questions/1782530/alternate-background-row-in-jqgrid/1782543#1782543Comment by Craig Stuntz on alternate background row in jqgridCraig Stuntz2009-11-23T22:22:04Z2009-11-23T22:22:04Z<i>Way</i> too much work. This feature is already built into the grid. No need to reinvent it.http://stackoverflow.com/questions/1783536/sql-server-query-execution-plan-rebuildComment by Craig Stuntz on SQL Server Query Execution Plan RebuildCraig Stuntz2009-11-23T20:01:54Z2009-11-23T20:01:54ZYou're right. It looks crazy. You actually need every field of every entity you're including <i>and</i> you intend to update every single instance <i>and</i> you've profiled and found that this is faster than individual demand loading? That's the only reasonable argument I can think of for doing this instead of projecting (my first choice for read-only use cases) or breaking into smaller queries.http://stackoverflow.com/questions/1784046/dateformat-with-nullable-variableComment by Craig Stuntz on Dateformat with nullable variableCraig Stuntz2009-11-23T15:58:43Z2009-11-23T15:58:43ZWhat would you like the formatted string to be if the var value is null?http://stackoverflow.com/questions/1760505/how-can-i-write-linq2entities-query-with-inner-joins/1767935#1767935Comment by Craig Stuntz on How can i write Linq2Entities Query with inner joinsCraig Stuntz2009-11-23T14:24:14Z2009-11-23T14:24:14ZThis should be be supported in EF 4. In EF 1, <a href="http://stackoverflow.com/questions/374267/contains-workaround-using-linq-to-entities/374703#374703" rel="nofollow" title="contains workaround using linq to entities">stackoverflow.com/questions/374267/…</a>http://stackoverflow.com/questions/1771806/do-the-nerd-dinner-models-use-best-practices-for-disposing-objects/1771839#1771839Comment by Craig Stuntz on Do the Nerd Dinner models use best practices for disposing objects?Craig Stuntz2009-11-20T17:54:29Z2009-11-20T17:54:29ZIn the specific case of MVC you know exactly when the IQuerable will be enumerated (when the view is executed). You also know that this happens <i>before</i> the controller is disposed. So if you have a context which needs to be disposed, you can do it safely.http://stackoverflow.com/questions/1771806/do-the-nerd-dinner-models-use-best-practices-for-disposing-objects/1771853#1771853Comment by Craig Stuntz on Do the Nerd Dinner models use best practices for disposing objects?Craig Stuntz2009-11-20T17:52:51Z2009-11-20T17:52:51ZBe careful; that's not generally applicable outside of L2S. Other ORMs may actually care that they're disposed.http://stackoverflow.com/questions/1768594/properly-updating-in-entity-frameworkComment by Craig Stuntz on Properly Updating in Entity FrameworkCraig Stuntz2009-11-20T14:55:48Z2009-11-20T14:55:48ZWhen you say that sometimes it doesn't work, does that mean you see an error? If so, what error, precisely?http://stackoverflow.com/questions/1730272/linq-query-for-tag-system-search-for-multiple-tags/1730376#1730376Comment by Craig Stuntz on linq query for tag system - search for multiple tagsCraig Stuntz2009-11-20T01:52:00Z2009-11-20T01:52:00ZJan, that would give up on all the benefits of the relationship, as well as making the model wrong. Better to get the model right to begin with.http://stackoverflow.com/questions/1760821/controller-member/1760840#1760840Comment by Craig Stuntz on controller memberCraig Stuntz2009-11-19T13:06:55Z2009-11-19T13:06:55ZYes, Session is just a user-specific cache, so no need to reinvent it.http://stackoverflow.com/questions/1760505/how-can-i-write-linq2entities-query-with-inner-joins/1760562#1760562Comment by Craig Stuntz on How can i write Linq2Entities Query with inner joinsCraig Stuntz2009-11-19T12:58:36Z2009-11-19T12:58:36Z+1. This is the right answer. It is almost never right to use <code>join</code> in LINQ to Entities.