<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blog.vuscode.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>VusCode - Coding dreams since 1998! - All Comments</title><link>http://blog.vuscode.com/malovicn/default.aspx</link><description>.NET exploration, articles, cool links, surf logs, book reviews, .net, c#, smart clients, software factories, patterns &amp;amp; practices, web casts and much more</description><dc:language>en</dc:language><generator>CommunityServer 2007 (Build: 20416.853)</generator><item><title>re: Fluent NHibernate samples – Auto mapping (Part 1/2)</title><link>http://blog.vuscode.com/malovicn/archive/2009/11/04/fluent-nhibernate-samples-auto-mapping-part-1-2.aspx#1339</link><pubDate>Tue, 02 Mar 2010 23:27:59 GMT</pubDate><guid isPermaLink="false">4fad33ed-6fa7-4667-b447-1fa3be86b49e:1339</guid><dc:creator>Heiko</dc:creator><description>&lt;p&gt;Great article! &amp;nbsp;Great Explanation - the best I have seen regarding latest FNH code and automapping.&lt;/p&gt;
&lt;p&gt;However I have a question: &amp;nbsp;The CategoriesToPosts Table is not filled when I do: &lt;/p&gt;
&lt;p&gt;using(var tx = session.BeginTransaction())&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//ABSTRACT CLASS: &amp;nbsp;var Aut = new Author { Name = &amp;quot;Heiko&amp;quot; };&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//Aut.Adress = Adr;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var adr = new Address {City = &amp;quot;Berlin&amp;quot; , Country =&amp;quot;GER&amp;quot;, Email=&amp;quot;HeikoATgmx.de&amp;quot;};&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var gAuth = new GuestAuthor{Name=&amp;quot;Sebastian&amp;quot;, OriginalBlogAddress=&amp;quot;httpXY2&amp;quot;};&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;gAuth.Address = adr;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;gAuth.LastModified = DateTime.Now;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var pst = new Post {Status=PostStatus.Active, Title=&amp;quot;Post-NEW&amp;quot;};&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var pst2 = new Post { Status = PostStatus.Inactive, Title = &amp;quot;Post-XXX&amp;quot; };&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var Catg = new Category { Name = &amp;quot;Category_A&amp;quot; };&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var Catg2 = new Category { Name = &amp;quot;Category_B&amp;quot; };&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Catg.Add(pst); &amp;nbsp;//MANY&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Catg2.Add(pst2); &amp;nbsp;//MANY&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var RegAuth = new RegularAuthor { Name = &amp;quot;Heiko&amp;quot; };&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;RegAuth.Address = adr;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;RegAuth.DateOfFirstBlogPost = DateTime.Now;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;RegAuth.LastModified = DateTime.Now;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var rl = new BlogRoll { Name = &amp;quot;blogrollname&amp;quot; }; &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;rl.LastModified = DateTime.Now;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var blg = new Blog {BlogTitle=&amp;quot;HeissesZeugBlog&amp;quot;};&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;blg.LastModified = DateTime.Now;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;blg.Author=RegAuth;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;blg.Add( pst &amp;nbsp;); &amp;nbsp;//MANY &amp;nbsp; - does ps.Add(blg) inside&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;blg.Add( pst2 ); &amp;nbsp;//MANY &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;blg.Roll = rl;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;session.Save(blg);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;session.Save(gAuth);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;session.Save(rl);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;session.Save(blg);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;session.Save(pst);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;session.Save(Catg);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//session.Save(Catg2);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tx.commit&lt;/p&gt;
&lt;p&gt;Please Help &lt;/p&gt;
&lt;img src="http://blog.vuscode.com/aggbug.aspx?PostID=1339" width="1" height="1"&gt;</description></item><item><title>re: Model View Presenter (MVP) design pattern close look - Part 2 - Passive View</title><link>http://blog.vuscode.com/malovicn/archive/2007/11/04/model-view-presenter-mvp-design-pattern-close-look-part-2-passive-view.aspx#1338</link><pubDate>Tue, 02 Mar 2010 07:06:59 GMT</pubDate><guid isPermaLink="false">4fad33ed-6fa7-4667-b447-1fa3be86b49e:1338</guid><dc:creator>akinosakurako</dc:creator><description>&lt;p&gt;......View contains the Presenter instance (view &amp;quot;knows&amp;quot; presenter) ......&lt;/p&gt;
&lt;p&gt;==============================================&lt;/p&gt;
&lt;p&gt;Thereis not necessary for this. In my Project Design, I add another Class Called &amp;quot;ViewLoader&amp;quot; to Coordinate the relationship between View and Presenter. So, view &amp;quot;don&amp;#39;t knows&amp;quot; presenter at all.&lt;/p&gt;
&lt;img src="http://blog.vuscode.com/aggbug.aspx?PostID=1338" width="1" height="1"&gt;</description></item><item><title>re: Prism (CAL) unit testing - How to test Prism (CAL) Event Aggregator using Rhino Mocks</title><link>http://blog.vuscode.com/malovicn/archive/2009/04/17/prism-cal-unit-testing-how-to-test-prism-cal-event-aggregator-using-rhino-mocks.aspx#1336</link><pubDate>Tue, 23 Feb 2010 11:20:24 GMT</pubDate><guid isPermaLink="false">4fad33ed-6fa7-4667-b447-1fa3be86b49e:1336</guid><dc:creator>Rack</dc:creator><description>&lt;p&gt;Is there any fix for the issue , related to &amp;quot;ThreadOption.UIThread&amp;quot;. &amp;nbsp;&lt;/p&gt;
&lt;img src="http://blog.vuscode.com/aggbug.aspx?PostID=1336" width="1" height="1"&gt;</description></item><item><title>re: Asking the right questions while interviewing developers</title><link>http://blog.vuscode.com/malovicn/archive/2010/01/07/asking-the-right-questions-while-interviewing-developers.aspx#1335</link><pubDate>Tue, 23 Feb 2010 09:17:08 GMT</pubDate><guid isPermaLink="false">4fad33ed-6fa7-4667-b447-1fa3be86b49e:1335</guid><dc:creator>malovicn</dc:creator><description>&lt;p&gt;Andrea,&lt;/p&gt;
&lt;p&gt;The result would be 5 times &amp;quot;Hello from class C&amp;quot; because there are two instances of class C on the heap and 5 stack pointers of different type to that two instances. &lt;/p&gt;
&lt;p&gt;In other words, it is the heap type which matters not the type of pointer on stack.&lt;/p&gt;
&lt;p&gt;Pavel,&lt;/p&gt;
&lt;p&gt;I understand what are you saying - I've been doing the high level stuff myself for years but that sounds to me more like an architect then like a developer area of responsibilitty and I agree there are different sets of questions to ask in that context (I guess, what I call a developer is what you call programmer I guess). &lt;/p&gt;
&lt;p&gt;As II said this question is (IMHO) of fizzbuzz type so you can ask it during the short phone screening before real interview etc... &lt;/p&gt;
&lt;p&gt;IMHO, even in managed world understanding of principles of memory allocations, garbage collector mechanism etc is essential for senior+ developers\programers because sooner or later would be required in debuging memory leaks, tuning up performance etc... &lt;/p&gt;
&lt;p&gt;I might be wrong in expecting this , but as I said - just my oppinion :) &lt;/p&gt;
&lt;img src="http://blog.vuscode.com/aggbug.aspx?PostID=1335" width="1" height="1"&gt;</description></item><item><title>re: Knetlik conference was a lot of fun</title><link>http://blog.vuscode.com/malovicn/archive/2010/02/13/knetlik-conference-was-a-lot-of-fun.aspx#1334</link><pubDate>Fri, 19 Feb 2010 23:12:01 GMT</pubDate><guid isPermaLink="false">4fad33ed-6fa7-4667-b447-1fa3be86b49e:1334</guid><dc:creator>Pavel Korshikov</dc:creator><description>&lt;p&gt;BTW, I added a short story with link to this article and SLUG, hope that you are not disagree :) See more on &lt;a rel="nofollow" target="_new" href="http://www.itreport.eu/prague-silverlight-user-group-slug/index.html"&gt;www.itreport.eu/.../index.html&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://blog.vuscode.com/aggbug.aspx?PostID=1334" width="1" height="1"&gt;</description></item><item><title>re: Asking the right questions while interviewing developers</title><link>http://blog.vuscode.com/malovicn/archive/2010/01/07/asking-the-right-questions-while-interviewing-developers.aspx#1333</link><pubDate>Fri, 19 Feb 2010 13:33:59 GMT</pubDate><guid isPermaLink="false">4fad33ed-6fa7-4667-b447-1fa3be86b49e:1333</guid><dc:creator>Pavel Korshikov</dc:creator><description>&lt;p&gt;Actually nor I, developer with more than 20 years experience cannot easily answer, because actually it doesn&amp;#39;t matter. (Or we have to differentiate programmers and developers?) &lt;/p&gt;
&lt;p&gt;Because most of mine time is architecture debates, selecting right solution and configuring. To see what will happens when someone overload some method - it is not actual for current development process at all.&lt;/p&gt;
&lt;p&gt;For mine personal opinion most important is capability of candidate to choose good solution that can be implemented in specified time and as related process candidate&amp;#39;s experience.&lt;/p&gt;
&lt;img src="http://blog.vuscode.com/aggbug.aspx?PostID=1333" width="1" height="1"&gt;</description></item><item><title>re: Using the entity framework POCO template with VS2010 RC (easier way)</title><link>http://blog.vuscode.com/malovicn/archive/2010/02/17/using-the-entity-framework-poco-template-with-vs2010-rc-easier-way.aspx#1332</link><pubDate>Fri, 19 Feb 2010 09:43:50 GMT</pubDate><guid isPermaLink="false">4fad33ed-6fa7-4667-b447-1fa3be86b49e:1332</guid><dc:creator>malovicn</dc:creator><description>&lt;p&gt;Danny, &lt;/p&gt;
&lt;p&gt;make sure that the line containing inputFile = ... contains a valid path to your edmx file (most probably your issue)&lt;/p&gt;
&lt;img src="http://blog.vuscode.com/aggbug.aspx?PostID=1332" width="1" height="1"&gt;</description></item><item><title>re: Using the entity framework POCO template with VS2010 RC (easier way)</title><link>http://blog.vuscode.com/malovicn/archive/2010/02/17/using-the-entity-framework-poco-template-with-vs2010-rc-easier-way.aspx#1331</link><pubDate>Thu, 18 Feb 2010 16:18:05 GMT</pubDate><guid isPermaLink="false">4fad33ed-6fa7-4667-b447-1fa3be86b49e:1331</guid><dc:creator>Danny</dc:creator><description>&lt;p&gt;This doesn&amp;#39;t work; I get the following error:&lt;/p&gt;
&lt;p&gt;Error	1	Running transformation: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---&amp;gt; System.IO.FileNotFoundException: Unable to locate file&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at Microsoft.VisualStudio.TextTemplating.VSHost.TextTemplatingService.ResolvePath(String path)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at Microsoft.VisualStudio.TextTemplating.VSHost.TextTemplatingService.ResolvePath(String path)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; --- End of inner exception stack trace ---&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.RuntimeMethodHandle._InvokeMethodFast(IRuntimeMethodInfo method, Object target, Object[] arguments, SignatureStruct&amp;amp; sig, MethodAttributes methodAttributes, RuntimeType typeOwner)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.RuntimeMethodHandle.InvokeMethodFast(IRuntimeMethodInfo method, Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeType typeOwner)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at Microsoft.VisualStudio.TextTemplatingEB5A9BAE66DC8DACF545B9EC88E1789A.GeneratedTextTransformation.DynamicHost.ResolvePath(String path)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at Microsoft.VisualStudio.TextTemplatingEB5A9BAE66DC8DACF545B9EC88E1789A.GeneratedTextTransformation.MetadataLoader.TryCreateEdmItemCollection(String sourcePath, String[] referenceSchemas, EdmItemCollection&amp;amp; edmItemCollection)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at Microsoft.VisualStudio.TextTemplatingEB5A9BAE66DC8DACF545B9EC88E1789A.GeneratedTextTransformation.MetadataLoader.CreateEdmItemCollection(String sourcePath, String[] referenceSchemas)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at Microsoft.VisualStudio.TextTemplatingEB5A9BAE66DC8DACF545B9EC88E1789A.GeneratedTextTransformation.TransformText()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at Microsoft.VisualStudio.TextTemplating.TransformationRunner.RunTransformation(TemplateProcessingSession session, String source, ITextTemplatingEngineHost host, String&amp;amp; result)		1	1	&lt;/p&gt;
&lt;img src="http://blog.vuscode.com/aggbug.aspx?PostID=1331" width="1" height="1"&gt;</description></item><item><title>re: Using the entity framework POCO template with VS2010 RC (easier way)</title><link>http://blog.vuscode.com/malovicn/archive/2010/02/17/using-the-entity-framework-poco-template-with-vs2010-rc-easier-way.aspx#1330</link><pubDate>Thu, 18 Feb 2010 10:05:10 GMT</pubDate><guid isPermaLink="false">4fad33ed-6fa7-4667-b447-1fa3be86b49e:1330</guid><dc:creator>Pietro Libro</dc:creator><description>&lt;p&gt;thanks,Very simple&lt;/p&gt;
&lt;img src="http://blog.vuscode.com/aggbug.aspx?PostID=1330" width="1" height="1"&gt;</description></item><item><title>Entity Framework 4 POCO Template e VS 2010 RC |     Pietro</title><link>http://blog.vuscode.com/malovicn/archive/2010/02/17/using-the-entity-framework-poco-template-with-vs2010-rc-easier-way.aspx#1329</link><pubDate>Thu, 18 Feb 2010 09:57:31 GMT</pubDate><guid isPermaLink="false">4fad33ed-6fa7-4667-b447-1fa3be86b49e:1329</guid><dc:creator>Entity Framework 4 POCO Template e VS 2010 RC |     Pietro</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Entity Framework 4 POCO Template e VS 2010 RC | &amp;nbsp; &amp;nbsp; Pietro&lt;/p&gt;
&lt;img src="http://blog.vuscode.com/aggbug.aspx?PostID=1329" width="1" height="1"&gt;</description></item></channel></rss>