<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>var matt = new Hero(); - Latest Comments</title><link>http://fidelitydesign.disqus.com/</link><description></description><atom:link href="https://fidelitydesign.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Fri, 10 Jul 2015 06:46:27 -0000</lastBuildDate><item><title>Re: Razor. Without the MVC.</title><link>http://www.fidelitydesign.net/?p=208#comment-2128271909</link><description>&lt;p&gt;Very nice, the performance is great as well. I've started modifying this for my purposes - as well as reading cshtml files. I noticed before parsing the template you need to remove the @model line from cshtml files which looks like&lt;br&gt;"@model someMOdel"&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TehWazzard</dc:creator><pubDate>Fri, 10 Jul 2015 06:46:27 -0000</pubDate></item><item><title>Re: Contact Me</title><link>http://www.fidelitydesign.net/?page_id=568#comment-1966775558</link><description>&lt;p&gt;Excellent blog Matt. Kudos to you. I am how ever saddened that SQL-Server does not allow full .NET access. And even with your approach, I can not do what I want to do, which is to bring full CSHTML/Razor to SQL Server's CLR/Stored Procedures. I think it would be better to find the code inside SQL Server blocking the Assembly.Load, and blockage of registering any .NET assembly, and cutting it out at this point. As long as we can't use Assembly.Load in anything, or specific assemblies, like System.XAML, we would be forced to have two worlds for development. One to use the latest .NET tools/aspi's, and another, custom made, for SQL-Server.&lt;br&gt;Bottom line, Microsoft should have allowed unsafe mode to register anything.&lt;br&gt;As for my CSHTML/Razor dream, I want to have CSHTML files, work with SQL-Server's CLR/Stored-Procedures, just like IIS does, where I can pre-compile test them in my Visual Studio project, put break points in the file, run them, change them on the fly, without having to stop/restart SQL-Server (just like CSHTML/Razor works for IIS with MVC right now!), and have the changes go into affect.&lt;br&gt;But most important, I want the full access to anything in the CSHTML/Razor files, which will include Assembly.Load, emails, memory mapped files, Interoperability, and anything I can imagine to link into @include statements in my CSHTML/Razor files.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">J-S-B</dc:creator><pubDate>Tue, 14 Apr 2015 09:37:04 -0000</pubDate></item><item><title>Re: An early look at RazorEngine v3</title><link>http://www.fidelitydesign.net/?p=473#comment-1757452911</link><description>&lt;p&gt;use Server.MapPath to get parse the actual path and use&lt;/p&gt;&lt;p&gt;System.IO.ReadAllText()&lt;/p&gt;&lt;p&gt;to read all the contents from specified filelocation and then use razor.parse()...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">VGan36</dc:creator><pubDate>Wed, 24 Dec 2014 05:50:29 -0000</pubDate></item><item><title>Re: Razor. Without the MVC.</title><link>http://www.fidelitydesign.net/?p=208#comment-1509237686</link><description>&lt;p&gt;Is it possible to use an external caching system via a caching provider model?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Reza</dc:creator><pubDate>Mon, 28 Jul 2014 23:27:15 -0000</pubDate></item><item><title>Re: Plug and Play Services with MEF and WCF</title><link>http://www.fidelitydesign.net/?p=390#comment-1459994736</link><description>&lt;p&gt;It is really good to understand the concept behind mef and wcf..&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mehtab</dc:creator><pubDate>Sun, 29 Jun 2014 02:03:41 -0000</pubDate></item><item><title>Re: An early look at RazorEngine v3</title><link>http://www.fidelitydesign.net/?p=473#comment-1455287302</link><description>&lt;p&gt;how to parse master page("~/Views/Shared/_Layout.cshtml") using Razor.Parse.&lt;/p&gt;&lt;p&gt;I got below error.&lt;/p&gt;&lt;p&gt;System.NullReferenceException was unhandled by user code&lt;/p&gt;&lt;p&gt;  HResult=-2147467261&lt;/p&gt;&lt;p&gt;  Message=Object reference not set to an instance of an object.&lt;/p&gt;&lt;p&gt;  Source=RazorEngine&lt;/p&gt;&lt;p&gt;  StackTrace:&lt;/p&gt;&lt;p&gt;       at RazorEngine.Templating.TemplateBase.RazorEngine.Templating.ITemplate.Run(ExecuteContext context) in c:\Users\abbottm\Documents\GitHub\RazorEngine\src\Core\RazorEngine.Core\Templating\TemplateBase.cs:line 139&lt;/p&gt;&lt;p&gt;       at RazorEngine.Templating.TemplateService.Run(ITemplate template, DynamicViewBag viewBag) in c:\Users\abbottm\Documents\GitHub\RazorEngine\src\Core\RazorEngine.Core\Templating\TemplateService.cs:line 608&lt;/p&gt;&lt;p&gt;       at RazorEngine.Templating.TemplateService.Parse(String razorTemplate, Object model, DynamicViewBag viewBag, String cacheName) in c:\Users\abbottm\Documents\GitHub\RazorEngine\src\Core\RazorEngine.Core\Templating\TemplateService.cs:line 439&lt;/p&gt;&lt;p&gt;       at RazorEngine.Razor.Parse[T](String razorTemplate, T model) in c:\Users\abbottm\Documents\GitHub\RazorEngine\src\Core\RazorEngine.Core\Razor.cs:line 263&lt;/p&gt;&lt;p&gt;       at System.Dynamic.UpdateDelegates.UpdateAndExecute3[T0,T1,T2,TRet](CallSite site, T0 arg0, T1 arg1, T2 arg2)&lt;/p&gt;&lt;p&gt;       at RenderViewExample.Controllers.HomeController.Index() in f:\test application\renderviewexample\RenderViewExample\RenderViewExample\Controllers\HomeController.cs:line 27&lt;/p&gt;&lt;p&gt;       at lambda_method(Closure , ControllerBase , Object[] )&lt;/p&gt;&lt;p&gt;       at System.Web.Mvc.ActionMethodDispatcher.Execute(ControllerBase controller, Object[] parameters)&lt;/p&gt;&lt;p&gt;       at System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters)&lt;/p&gt;&lt;p&gt;       at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters)&lt;/p&gt;&lt;p&gt;       at System.Web.Mvc.Async.AsyncControllerActionInvoker.&amp;lt;&amp;gt;c__DisplayClass42.&amp;lt;begininvokesynchronousactionmethod&amp;gt;b__41()&lt;/p&gt;&lt;p&gt;       at System.Web.Mvc.Async.AsyncResultWrapper.&amp;lt;&amp;gt;c__DisplayClass8`1.&amp;lt;beginsynchronous&amp;gt;b__7(IAsyncResult _)&lt;/p&gt;&lt;p&gt;       at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult`1.End()&lt;/p&gt;&lt;p&gt;       at System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethod(IAsyncResult asyncResult)&lt;/p&gt;&lt;p&gt;       at System.Web.Mvc.Async.AsyncControllerActionInvoker.&amp;lt;&amp;gt;c__DisplayClass37.&amp;lt;&amp;gt;c__DisplayClass39.&amp;lt;begininvokeactionmethodwithfilters&amp;gt;b__33()&lt;/p&gt;&lt;p&gt;       at System.Web.Mvc.Async.AsyncControllerActionInvoker.&amp;lt;&amp;gt;c__DisplayClass4f.&amp;lt;invokeactionmethodfilterasynchronously&amp;gt;b__49()&lt;/p&gt;&lt;p&gt;  InnerException:&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tarun</dc:creator><pubDate>Thu, 26 Jun 2014 09:50:07 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part Two</title><link>http://www.fidelitydesign.net/?p=130#comment-1252915696</link><description>&lt;p&gt;Aaargh, it only worked after using the WebformAreaViewEngine (and visiting /Blog/View/ - returning View.aspx) - then visiting the same url WITH the RazorViewEngine works fine. Somehow i suspect mvc to be storing the dll in a tmp folder so after visiting the webform, it works in razor.&lt;/p&gt;&lt;p&gt;So im still looking for at solution :(&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dannie</dc:creator><pubDate>Thu, 20 Feb 2014 07:21:24 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part Two</title><link>http://www.fidelitydesign.net/?p=130#comment-1252105590</link><description>&lt;p&gt;Got this to work with razor view:&lt;/p&gt;&lt;p&gt;@inherits System.Web.Mvc.WebViewPage&amp;lt;&lt;a href="http://mefmvcframework.blog.models.post" rel="nofollow noopener" target="_blank" title="mefmvcframework.blog.models.post"&gt;mefmvcframework.blog.models...&lt;/a&gt;&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;h2&amp;gt;@Model.Title&amp;lt;/h2&amp;gt;&lt;/p&gt;&lt;p&gt;using the @inherits keyword instead of @model, and writing the fully quialified path to the class did the trick&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dannie</dc:creator><pubDate>Wed, 19 Feb 2014 16:23:26 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part Two</title><link>http://www.fidelitydesign.net/?p=130#comment-1252104211</link><description>&lt;p&gt;Got this to work:&lt;/p&gt;&lt;p&gt;@inherits System.Web.Mvc.WebViewPage&amp;lt;&lt;a href="http://mefmvcframework.blog.models.post" rel="nofollow noopener" target="_blank" title="mefmvcframework.blog.models.post"&gt;mefmvcframework.blog.models...&lt;/a&gt;&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;h2&amp;gt;@Model.Title&amp;lt;/h2&amp;gt;&lt;/p&gt;&lt;p&gt;using the @inherits keyword instead of @model, and writing the fully quialified path to the class did the trick&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dannie</dc:creator><pubDate>Wed, 19 Feb 2014 16:22:24 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part Two</title><link>http://www.fidelitydesign.net/?p=130#comment-1252096883</link><description>&lt;p&gt;Hmmm, curious. Tried to replace "@model Models.Post" with "@inherits System.Web.Mvc.WebViewPage", thereby losing my strongly typed view - this worked fine (not referencing the model-type in the view - i singlestepped the view and saw that the variable "@Model" was created fine and populated with data.. Why cant the view (when copied) not find the type?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dannie</dc:creator><pubDate>Wed, 19 Feb 2014 16:17:05 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part Two</title><link>http://www.fidelitydesign.net/?p=130#comment-1252065082</link><description>&lt;p&gt;Anyone having any luck solving the issue with razor views??&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dannie</dc:creator><pubDate>Wed, 19 Feb 2014 15:57:23 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part Two</title><link>http://www.fidelitydesign.net/?p=130#comment-1249696937</link><description>&lt;p&gt;I found an ugly solution for razor. It works.&lt;br&gt;Compilation assembly in plugin web.config breaks intelli-sense.&lt;br&gt;Therefore I used compilation assembly in the main applications web.config.&lt;br&gt;I will appreciate if you find a solution to this problem.&lt;/p&gt;&lt;p&gt;Add a config to your plugin root folder:&lt;/p&gt;&lt;p&gt;&amp;lt;configuration&amp;gt;&lt;br&gt;&amp;lt;configsections&amp;gt;&lt;br&gt;&amp;lt;sectiongroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&amp;gt;&lt;br&gt;&amp;lt;section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirepermission="false"/&amp;gt;&lt;br&gt;&amp;lt;section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirepermission="false"/&amp;gt;&lt;br&gt;&amp;lt;/sectiongroup&amp;gt;&lt;br&gt;&amp;lt;/configsections&amp;gt;&lt;br&gt;&amp;lt;system.web.webpages.razor&amp;gt;&lt;br&gt;&amp;lt;host factorytype="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&amp;gt;&lt;br&gt;&amp;lt;pages pagebasetype="System.Web.Mvc.WebViewPage"&amp;gt;&lt;br&gt;&amp;lt;namespaces&amp;gt;&lt;br&gt;&amp;lt;add namespace="System.Web.Mvc"/&amp;gt;&lt;br&gt;&amp;lt;add namespace="System.Web.Mvc.Ajax"/&amp;gt;&lt;br&gt;&amp;lt;add namespace="System.Web.Mvc.Html"/&amp;gt;&lt;br&gt;&amp;lt;add namespace="System.Web.Routing"/&amp;gt;&lt;br&gt;&amp;lt;/namespaces&amp;gt;&lt;br&gt;&amp;lt;/pages&amp;gt;&lt;br&gt;&amp;lt;/system.web.webpages.razor&amp;gt;&lt;br&gt;&amp;lt;appsettings&amp;gt;&lt;br&gt;&amp;lt;add key="webpages:Version" value="2.0.0.0"/&amp;gt;&lt;br&gt;&amp;lt;/appsettings&amp;gt;&lt;br&gt;&amp;lt;system.web&amp;gt;&lt;br&gt;&amp;lt;compilation targetframework="4.5"&amp;gt;&lt;br&gt;&amp;lt;assemblies&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&amp;gt;&lt;br&gt;&amp;lt;/assemblies&amp;gt;&lt;br&gt;&amp;lt;/compilation&amp;gt;&lt;br&gt;&amp;lt;/system.web&amp;gt;&lt;br&gt;&amp;lt;/configuration&amp;gt;&lt;/p&gt;&lt;p&gt;Add these to your main config:&lt;/p&gt;&lt;p&gt;&amp;lt;compilation debug="true" targetframework="4.5"&amp;gt;&lt;br&gt;&amp;lt;assemblies&amp;gt;&lt;br&gt;&amp;lt;add assembly="Plugins.ContentManagement"/&amp;gt;&lt;br&gt;&amp;lt;/assemblies&amp;gt;&lt;br&gt;&amp;lt;/compilation&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;runtime&amp;gt;&lt;br&gt;&amp;lt;assemblybinding xmlns="urn:schemas-microsoft-com:asm.v1"&amp;gt;&lt;br&gt;&amp;lt;probing privatepath="bin;Plugins"/&amp;gt;&lt;br&gt;&amp;lt;/assemblybinding&amp;gt;&lt;br&gt;&amp;lt;/runtime&amp;gt;&lt;/p&gt;&lt;p&gt;Remove this line from Application.cs:&lt;/p&gt;&lt;p&gt;RegisterPath(directoryCatalog.FullPath);&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">yigit</dc:creator><pubDate>Tue, 18 Feb 2014 09:42:36 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part Two</title><link>http://www.fidelitydesign.net/?p=130#comment-1249695911</link><description>&lt;p&gt;I found an ugly solution for razor. It works.&lt;br&gt;Compilation assembly in plugin web.config breaks intelli-sense.&lt;br&gt;Therefore I used compilation assembly in the main applications web.config.&lt;br&gt;I will appreciate if you find a solution to this problem.&lt;/p&gt;&lt;p&gt;Add a config to your plugin root folder:&lt;/p&gt;&lt;p&gt;&amp;lt;configuration&amp;gt;&lt;br&gt;&amp;lt;configsections&amp;gt;&lt;br&gt;&amp;lt;sectiongroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&amp;gt;&lt;br&gt;&amp;lt;section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirepermission="false"/&amp;gt;&lt;br&gt;&amp;lt;section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirepermission="false"/&amp;gt;&lt;br&gt;&amp;lt;/sectiongroup&amp;gt;&lt;br&gt;&amp;lt;/configsections&amp;gt;&lt;br&gt;&amp;lt;system.web.webpages.razor&amp;gt;&lt;br&gt;&amp;lt;host factorytype="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&amp;gt;&lt;br&gt;&amp;lt;pages pagebasetype="System.Web.Mvc.WebViewPage"&amp;gt;&lt;br&gt;&amp;lt;namespaces&amp;gt;&lt;br&gt;&amp;lt;add namespace="System.Web.Mvc"/&amp;gt;&lt;br&gt;&amp;lt;add namespace="System.Web.Mvc.Ajax"/&amp;gt;&lt;br&gt;&amp;lt;add namespace="System.Web.Mvc.Html"/&amp;gt;&lt;br&gt;&amp;lt;add namespace="System.Web.Routing"/&amp;gt;&lt;br&gt;&amp;lt;/namespaces&amp;gt;&lt;br&gt;&amp;lt;/pages&amp;gt;&lt;br&gt;&amp;lt;/system.web.webpages.razor&amp;gt;&lt;br&gt;&amp;lt;appsettings&amp;gt;&lt;br&gt;&amp;lt;add key="webpages:Version" value="2.0.0.0"/&amp;gt;&lt;br&gt;&amp;lt;/appsettings&amp;gt;&lt;br&gt;&amp;lt;system.web&amp;gt;&lt;br&gt;&amp;lt;compilation targetframework="4.5"&amp;gt;&lt;br&gt;&amp;lt;assemblies&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&amp;gt;&lt;br&gt;&amp;lt;add assembly="System.Web.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&amp;gt;&lt;br&gt;&amp;lt;/assemblies&amp;gt;&lt;br&gt;&amp;lt;/compilation&amp;gt;&lt;br&gt;&amp;lt;/system.web&amp;gt;&lt;br&gt;&amp;lt;/configuration&amp;gt;&lt;/p&gt;&lt;p&gt;Add these to your main config:&lt;/p&gt;&lt;p&gt;&amp;lt;compilation debug="true" targetframework="4.5"&amp;gt;&lt;br&gt;      &amp;lt;assemblies&amp;gt;&lt;br&gt;        &amp;lt;add assembly="Plugins.ContentManagement"/&amp;gt;&lt;br&gt;      &amp;lt;/assemblies&amp;gt;&lt;br&gt;    &amp;lt;/compilation&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;runtime&amp;gt;&lt;br&gt;    &amp;lt;assemblybinding xmlns="urn:schemas-microsoft-com:asm.v1"&amp;gt;&lt;br&gt;      &amp;lt;probing privatepath="bin;Plugins"/&amp;gt;&lt;br&gt;    &amp;lt;/assemblybinding&amp;gt;&lt;br&gt;  &amp;lt;/runtime&amp;gt;&lt;/p&gt;&lt;p&gt;Remove this line from Application.cs:&lt;/p&gt;&lt;p&gt;RegisterPath(directoryCatalog.FullPath);&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">yigit</dc:creator><pubDate>Tue, 18 Feb 2014 09:41:46 -0000</pubDate></item><item><title>Re: RazorEngine v2: Subtemplating</title><link>http://www.fidelitydesign.net/?p=284#comment-1099383490</link><description>&lt;p&gt;I seem to have some issues with child templates.&lt;/p&gt;&lt;p&gt;At compile time they're missing the assembly references that I have when I call parse (I'm pulling in an external reference).&lt;/p&gt;&lt;p&gt;My way around this was to use 'dynamic' for everything, but at runtime I get 'object does not have property X' errors.&lt;/p&gt;&lt;p&gt;Any ideas on how I can fix this?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">richorama</dc:creator><pubDate>Mon, 28 Oct 2013 08:43:19 -0000</pubDate></item><item><title>Re: An early look at RazorEngine v3</title><link>http://www.fidelitydesign.net/?p=473#comment-1034279830</link><description>&lt;p&gt;I have same question too, Is this project dead ? :(&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Gupta Anirudha</dc:creator><pubDate>Sun, 08 Sep 2013 10:36:15 -0000</pubDate></item><item><title>Re: Interesting thought&amp;#8230;</title><link>http://www.fidelitydesign.net/?p=45#comment-973219439</link><description>&lt;p&gt;The comic strip is a classic! Thanks for sharing and please add some more! They'd be great visual tools to communicate code-etiquette to newbie programmers.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sudhanshu</dc:creator><pubDate>Tue, 23 Jul 2013 05:40:29 -0000</pubDate></item><item><title>Re: Javascript + Razor == Jazor?</title><link>http://www.fidelitydesign.net/?p=375#comment-957394354</link><description>&lt;p&gt;Razor syntax is the most elegant syntax I have ever seen, glad to see it coming to JS&lt;br&gt;@Andrew Petersen  wow nice work thanks, and a compiler too, looking forward to integrating this into my Backbone boilerplate instead of handlebars or hogan :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dominic</dc:creator><pubDate>Wed, 10 Jul 2013 09:41:54 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part Three</title><link>http://www.fidelitydesign.net/?p=159#comment-934822559</link><description>&lt;p&gt;this project is very interesting, any plans to support razor?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">paulofbr</dc:creator><pubDate>Tue, 18 Jun 2013 19:39:02 -0000</pubDate></item><item><title>Re: MVC3 and MEF</title><link>http://www.fidelitydesign.net/?p=259#comment-909479143</link><description>&lt;p&gt;Hi Matt,&lt;/p&gt;&lt;p&gt;I'm following this article to build my project. Currently, i feel missing something in routing, your prototype register controllers of some web projects (plugins). I try to register routing like: /projectname/controller/action&lt;/p&gt;&lt;p&gt;What can i customize to do this?&lt;/p&gt;&lt;p&gt;Thank you in advance,&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan</dc:creator><pubDate>Sun, 26 May 2013 23:59:31 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part Two</title><link>http://www.fidelitydesign.net/?p=130#comment-904112729</link><description>&lt;p&gt;Any chance you updating this for MVC4? I don't think the pages config items are the same anymore. I've seen other code use .UI. equivalents (?) and I can't even find System.Web.Mvc.ViewTypeParserFilter. Also had to guess that "@using" is the same as "&amp;lt;%@Assembly" in Razor. I'm also using "Microsoft Best Practices" technique to integrate MEF and Unity so I had to guess on getting the RegisterPath stuff working. Any ideas, links or code snippets would be welcome at this point. This really took me by surprise and the project is now falling behind. &lt;br&gt;Thanks.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bill Jamieson</dc:creator><pubDate>Tue, 21 May 2013 14:17:08 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part One</title><link>http://www.fidelitydesign.net/?p=104#comment-880786384</link><description>&lt;p&gt;I just wanted to be sure I understand -- Does this mean that Controllers and Views can be added without an application pool restart?  Or is that still required?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">anon</dc:creator><pubDate>Tue, 30 Apr 2013 17:26:03 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part One</title><link>http://www.fidelitydesign.net/?p=104#comment-837684857</link><description>&lt;p&gt;Is this still the right solution for implementing a plugin architecture or has MS or MS community put something together now?&lt;/p&gt;&lt;p&gt;What about the controller dispose issue? I noticed someone contested your IDisposable recommendation. Have you validated this one way or another? I'd hate for MEF to maintain references that prevented proper clean up.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nathaniel</dc:creator><pubDate>Thu, 21 Mar 2013 18:15:00 -0000</pubDate></item><item><title>Re: An early look at RazorEngine v3</title><link>http://www.fidelitydesign.net/?p=473#comment-829909408</link><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;can I use RazorEngine on Mono on Mac OSx ?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">urza</dc:creator><pubDate>Fri, 15 Mar 2013 04:32:39 -0000</pubDate></item><item><title>Re: MVC3 and MEF</title><link>http://www.fidelitydesign.net/?p=259#comment-821812322</link><description>&lt;p&gt;hi&lt;/p&gt;&lt;p&gt;If we can use the Unit of Work pattern for the project. What should we make of this case?&lt;br&gt;If the Unit of Work pattern as in the following example is the work we should be how to implement it?&lt;/p&gt;&lt;p&gt;1-Current examples of model classes&lt;/p&gt;&lt;p&gt;using System.ComponentModel.&lt;/p&gt;&lt;p&gt;DataAnnotations;&lt;br&gt;namespace EF_Sample07.DomainClasses&lt;br&gt;{&lt;br&gt;public class Product&lt;br&gt;{&lt;br&gt;public int Id { get; set; }&lt;br&gt;public string Name { get; set; }&lt;br&gt;public decimal Price { get; set; }&lt;/p&gt;&lt;p&gt;[ForeignKey("CategoryId")]&lt;br&gt;public virtual Category Category { get; set; }&lt;br&gt;public int CategoryId { get; set; }&lt;br&gt;}&lt;br&gt;}&lt;/p&gt;&lt;p&gt;using System.Collections.Generic;&lt;br&gt;namespace EF_Sample07.DomainClasses&lt;/p&gt;&lt;p&gt;{&lt;br&gt;public class Category&lt;br&gt;{&lt;br&gt;public int Id { get; set; }&lt;br&gt;public virtual string Name { get; set; }&lt;/p&gt;&lt;p&gt;public virtual string Title { get; set; }&lt;br&gt;public virtual ICollection&amp;lt;product&amp;gt; Products { get; set; }&lt;/p&gt;&lt;p&gt;}&lt;br&gt;}&lt;/p&gt;&lt;p&gt;2-Prototyping work unit&lt;/p&gt;&lt;p&gt;using System.Data.Entity;&lt;br&gt;using System;&lt;br&gt;namespace EF_Sample07.DataLayer.Context&lt;br&gt;{&lt;br&gt;public interface IUnitOfWork&lt;br&gt;{&lt;br&gt;IDbSet&amp;lt;tentity&amp;gt; Set&amp;lt;tentity&amp;gt;() where TEntity : class;&lt;/p&gt;&lt;p&gt;int SaveChanges();&lt;br&gt;}&lt;br&gt;}&lt;/p&gt;&lt;p&gt;using System.Data.Entity;&lt;br&gt;using EF_Sample07.DomainClasses;&lt;br&gt;namespace EF_Sample07.DataLayer.Context&lt;/p&gt;&lt;p&gt;{&lt;br&gt;public class Sample07Context : DbContext, IUnitOfWork&lt;br&gt;{&lt;br&gt;public DbSet&amp;lt;category&amp;gt; Categories { set; get; }&lt;/p&gt;&lt;p&gt;public DbSet&amp;lt;product&amp;gt; Products { set; get; }&lt;br&gt;#region IUnitOfWork Members&lt;br&gt;public new IDbSet&amp;lt;tentity&amp;gt; Set&amp;lt;tentity&amp;gt;() where TEntity : class&lt;br&gt;{&lt;br&gt;return base.Set&amp;lt;tentity&amp;gt;();&lt;br&gt;}&lt;br&gt;#endregion&lt;/p&gt;&lt;p&gt;}&lt;br&gt;}&lt;/p&gt;&lt;p&gt;3-Using the unit of work pattern in service layer:&lt;/p&gt;&lt;p&gt;using EF_Sample07.DomainClasses;&lt;br&gt;using System.Collections.Generic;&lt;br&gt;namespace EF_Sample07.ServiceLayer&lt;/p&gt;&lt;p&gt;{&lt;br&gt;public interface ICategoryService&lt;br&gt;{&lt;br&gt;void AddNewCategory(Category category);&lt;br&gt;IList&amp;lt;category&amp;gt; GetAllCategories();&lt;br&gt;}&lt;br&gt;}&lt;br&gt;using EF_Sample07.DomainClasses;&lt;br&gt;using System.Collections.Generic;&lt;br&gt;namespace EF_Sample07.ServiceLayer&lt;/p&gt;&lt;p&gt;{&lt;br&gt;public interface IProductService&lt;br&gt;{&lt;br&gt;void AddNewProduct(Product product);&lt;br&gt;IList&amp;lt;product&amp;gt; GetAllProducts();&lt;br&gt;}&lt;br&gt;}&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shayn</dc:creator><pubDate>Thu, 07 Mar 2013 04:54:48 -0000</pubDate></item><item><title>Re: Modular ASP.NET MVC using the Managed Extensibility Framework (MEF), Part One</title><link>http://www.fidelitydesign.net/?p=104#comment-803818660</link><description>&lt;p&gt;How did you resolve the issue. I am getting the same error and have not been able to resolve the issue as of yet. Are you using the embedded views trick?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jason Duffus</dc:creator><pubDate>Mon, 18 Feb 2013 23:32:45 -0000</pubDate></item></channel></rss>