<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: I&#8217;m writing a MVVM book &#8211; What would you like to see in it?</title>
	<atom:link href="http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/feed/" rel="self" type="application/rss+xml" />
	<link>http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=im-writing-an-mvvm-book-what-would-you-like-to-see-in-it</link>
	<description></description>
	<lastBuildDate>Sun, 12 Feb 2012 18:54:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
	<item>
		<title>By: Raffaeu</title>
		<link>http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/comment-page-4/#comment-63751</link>
		<dc:creator>Raffaeu</dc:creator>
		<pubDate>Sat, 26 Mar 2011 20:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/#comment-63751</guid>
		<description>I would like to inform the Community that my book on MVVM and layered applications with SIlverlight and WPF has just been published and it is available on www.oreilly.com at this address:
http://oreilly.com/catalog/9780735650923/</description>
		<content:encoded><![CDATA[<p>I would like to inform the Community that my book on MVVM and layered applications with SIlverlight and WPF has just been published and it is available on <a href="http://www.oreilly.com" rel="nofollow">http://www.oreilly.com</a> at this address:<br />
<a href="http://oreilly.com/catalog/9780735650923/" rel="nofollow">http://oreilly.com/catalog/9780735650923/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Lagunas</title>
		<link>http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/comment-page-3/#comment-63701</link>
		<dc:creator>Brian Lagunas</dc:creator>
		<pubDate>Tue, 22 Feb 2011 16:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/#comment-63701</guid>
		<description>If you are looking for implementing dynamic columns, check out this post:
http://elegantcode.com/2010/03/08/silverlight-datagrid-populate-dynamic-columns-from-a-child-collection/</description>
		<content:encoded><![CDATA[<p>If you are looking for implementing dynamic columns, check out this post:<br />
<a href="http://elegantcode.com/2010/03/08/silverlight-datagrid-populate-dynamic-columns-from-a-child-collection/" rel="nofollow">http://elegantcode.com/2010/03/08/silverlight-datagrid-populate-dynamic-columns-from-a-child-collection/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Farzad</title>
		<link>http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/comment-page-3/#comment-63693</link>
		<dc:creator>Farzad</dc:creator>
		<pubDate>Fri, 18 Feb 2011 16:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/#comment-63693</guid>
		<description>from easy to hard:
1. Simple Data Entry form 
2. Master-detail Data Entry form
3. Data Entry form  implemented by stored procedure on SQL server ( every day life for many LOB applications)
4. something like datagrid with dynamic columns in runtime ( yes, that &#039;s right !)
5. ability to do undo/redo - save batch of data
</description>
		<content:encoded><![CDATA[<p>from easy to hard:<br />
1. Simple Data Entry form<br />
2. Master-detail Data Entry form<br />
3. Data Entry form  implemented by stored procedure on SQL server ( every day life for many LOB applications)<br />
4. something like datagrid with dynamic columns in runtime ( yes, that &#8216;s right !)<br />
5. ability to do undo/redo &#8211; save batch of data</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bastien neyer</title>
		<link>http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/comment-page-3/#comment-56801</link>
		<dc:creator>bastien neyer</dc:creator>
		<pubDate>Tue, 04 May 2010 19:59:45 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/#comment-56801</guid>
		<description>I am dealing with Master-Detail scenario and MVVM for 2 months now.

Having a View with partials/regions each datatemplated with a ViewModel holding a business model , CRUD operations are not possible because the regions need data from each other like SelectedCustomerViewModel,SelectedOrderViewModel etc... but there is only DataContext for all those viewmodels (main and the regions) and I do not think we should use the Mediator pattern to shoot around the needed data between those related regions aka viewmodels.

So if you can show complex master-detail count in as your most grateful customer :)</description>
		<content:encoded><![CDATA[<p>I am dealing with Master-Detail scenario and MVVM for 2 months now.</p>
<p>Having a View with partials/regions each datatemplated with a ViewModel holding a business model , CRUD operations are not possible because the regions need data from each other like SelectedCustomerViewModel,SelectedOrderViewModel etc&#8230; but there is only DataContext for all those viewmodels (main and the regions) and I do not think we should use the Mediator pattern to shoot around the needed data between those related regions aka viewmodels.</p>
<p>So if you can show complex master-detail count in as your most grateful customer <img src='http://elegantcode.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/comment-page-3/#comment-56024</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Tue, 13 Apr 2010 19:22:52 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/#comment-56024</guid>
		<description>I&#039;d like to see how keyboard events (and those with key modifiers) are handled as well as drag and drop events.</description>
		<content:encoded><![CDATA[<p>I&#8217;d like to see how keyboard events (and those with key modifiers) are handled as well as drag and drop events.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Woodard</title>
		<link>http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/comment-page-3/#comment-54820</link>
		<dc:creator>John Woodard</dc:creator>
		<pubDate>Tue, 30 Mar 2010 11:44:05 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/#comment-54820</guid>
		<description>TDD in relation to the view model (or if it&#039;s not do-able, then why).</description>
		<content:encoded><![CDATA[<p>TDD in relation to the view model (or if it&#8217;s not do-able, then why).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chandra</title>
		<link>http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/comment-page-3/#comment-54807</link>
		<dc:creator>Chandra</dc:creator>
		<pubDate>Mon, 29 Mar 2010 22:55:30 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/#comment-54807</guid>
		<description>It would be helpful if you discuss how seperation of views from models would help different teams.
For example: When UX team designs views in the expression blend, they don&#039;t need to interact with real models. 
How to use seperate models in design mode,debug mode and release mode would be helpful.
I think giving Silverlight or WPF samples would add lot of benefit.</description>
		<content:encoded><![CDATA[<p>It would be helpful if you discuss how seperation of views from models would help different teams.<br />
For example: When UX team designs views in the expression blend, they don&#8217;t need to interact with real models.<br />
How to use seperate models in design mode,debug mode and release mode would be helpful.<br />
I think giving Silverlight or WPF samples would add lot of benefit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chandra</title>
		<link>http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/comment-page-3/#comment-54806</link>
		<dc:creator>Chandra</dc:creator>
		<pubDate>Mon, 29 Mar 2010 22:54:53 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/#comment-54806</guid>
		<description>I think it would be helpful if you discuss how seperation of views from models would help different teams.
For example: When UX team designs views in the expression blend, they don&#039;t need to interact with real models. 
How to use seperate models in design mode,debug mode and release mode would be helpful.
I think giving Silverlight or WPF samples would add lot of benefit.</description>
		<content:encoded><![CDATA[<p>I think it would be helpful if you discuss how seperation of views from models would help different teams.<br />
For example: When UX team designs views in the expression blend, they don&#8217;t need to interact with real models.<br />
How to use seperate models in design mode,debug mode and release mode would be helpful.<br />
I think giving Silverlight or WPF samples would add lot of benefit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: florim maxhuni</title>
		<link>http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/comment-page-3/#comment-54717</link>
		<dc:creator>florim maxhuni</dc:creator>
		<pubDate>Sat, 27 Mar 2010 08:34:27 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/#comment-54717</guid>
		<description>It could be nice if you book has some of best practices for MVVM.</description>
		<content:encoded><![CDATA[<p>It could be nice if you book has some of best practices for MVVM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/comment-page-3/#comment-54686</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Wed, 24 Mar 2010 16:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2010/03/14/im-writing-an-mvvm-book-what-would-you-like-to-see-in-it/#comment-54686</guid>
		<description>I would like worked ( and explained ) examples covering real world LOB issues fully.  So I would expect Database access, a datagrid and CRUD for complex ( at least parent-child ) data.  Error handling. Dialogue boxes, printing and some asynchronous process handling.  A book is an opportunity to start with the basics and explain them then cover both how you do the routine and handle the exceptions.   On the web there are examples but they are mainly trivial.  Those few that are more complex are badly explained.  If you&#039;re a genius who has worked in MVVM for years I suspect it&#039;s difficult to work out what bits the rest of us need explaining.</description>
		<content:encoded><![CDATA[<p>I would like worked ( and explained ) examples covering real world LOB issues fully.  So I would expect Database access, a datagrid and CRUD for complex ( at least parent-child ) data.  Error handling. Dialogue boxes, printing and some asynchronous process handling.  A book is an opportunity to start with the basics and explain them then cover both how you do the routine and handle the exceptions.   On the web there are examples but they are mainly trivial.  Those few that are more complex are badly explained.  If you&#8217;re a genius who has worked in MVVM for years I suspect it&#8217;s difficult to work out what bits the rest of us need explaining.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

