<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;C0YHQn8-eyp7ImA9WhRVE0s.&quot;"><id>tag:blogger.com,1999:blog-5560686125469499114</id><updated>2012-01-12T20:38:53.153+11:00</updated><category term="visual studio" /><category term="Data Services" /><category term="Astoria" /><category term="jQuery" /><category term="news" /><category term="silverlight" /><category term="Ajax" /><category term="Entity Framework" /><category term=".Net" /><title>.Net Development Blog</title><subtitle type="html">Silverlight, MVVM, LINQ, Entity Framework, RIA, WCF, WPF, ASP.Net, MVC, Ajax, jQuery, Javascript...</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://asheeshsoni.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://asheeshsoni.blogspot.com/" /><author><name>Asheesh Soni</name><uri>http://www.blogger.com/profile/02330553325420758034</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/asheeshsoni" /><feedburner:info uri="asheeshsoni" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>asheeshsoni</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><entry gd:etag="W/&quot;Dk8FR30_eyp7ImA9WhZbEkU.&quot;"><id>tag:blogger.com,1999:blog-5560686125469499114.post-82245769954813084</id><published>2009-09-22T10:22:00.001+10:00</published><updated>2011-06-17T14:26:56.343+10:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-17T14:26:56.343+10:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Entity Framework" /><category scheme="http://www.blogger.com/atom/ns#" term=".Net" /><title>Entity Framework messes up Primary Keys of Views - A work around</title><content type="html">&lt;div&gt;&lt;p&gt;After adding a couple of Views to my Entity Data Model, I noticed that EF had messed up the Primary keys of my entities (based on the views). It was picking a lot of fields as Primary, even when they are not Primary. Obvious solution was to manually do what EF should have done for me. So I went ahead and fixed the keys in the Model. &lt;/p&gt;  &lt;p&gt;Lo and Behold! I was greeted with an error that all key properties of the entity set must be assigned to all key properties of the table.... WTF? &lt;/p&gt; &lt;span class="fullpost"&gt;   &lt;p&gt;Oh! Ok... I know EF maps the Store with the Model. I have fixed the Model... but not the Store yet. &lt;/p&gt;    &lt;p&gt;To my surprise, you can not edit the store from the designer. Never mind, its just XML, I can edit it using any text editor. So I went ahead and edited the .EDMX XML. I deleted all the incorrect Key entries. For example, I changed this: &lt;/p&gt;    &lt;p&gt;&amp;lt;Key&amp;gt;      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;PropertyRef Name=&amp;quot;HouseID&amp;quot; /&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;PropertyRef Name=&amp;quot;State&amp;quot; /&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;PropertyRef Name=&amp;quot;OtherCrapKey&amp;quot; /&amp;gt;       &lt;br /&gt;&amp;lt;/Key&amp;gt; &lt;/p&gt;    &lt;p&gt;to this: &lt;/p&gt;    &lt;p&gt;&amp;lt;Key&amp;gt;      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;PropertyRef Name=&amp;quot;HouseID&amp;quot; /&amp;gt;       &lt;br /&gt;&amp;lt;/Key&amp;gt; &lt;/p&gt;    &lt;p&gt;This fixed the problem... but only for a while. I knew that every time I change the schema (add / delete / modify a view for my Model), I'd have to &amp;quot;Update Model from Database&amp;quot;, that'll again screw up the entire Store. &lt;/p&gt;    &lt;p&gt;Googling the issue led to the following post: &lt;/p&gt;    &lt;p&gt;&lt;a href="http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/ea0bf748-bc97-439d-99b0-76180b2161bb?prof=required"&gt;http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/ea0bf748-bc97-439d-99b0-76180b2161bb?prof=required&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;So I knew the issue was Non-Nullable fields in the views. And the work around was simple. I made all the non-primary fields as Nullable. For example, if you have the following select statement in the view: &lt;/p&gt;    &lt;p&gt;Select idKey, fkidHouseType, 'Vic' State      &lt;br /&gt;From tblHouse &lt;/p&gt;    &lt;p&gt;This creates all the three fields as Primary in the EF Store (Even when only idKey should be Primary). &lt;/p&gt;    &lt;p&gt;Changing it to the following fixes the issue: &lt;/p&gt;    &lt;p&gt;Select idKey, Cast(fkidHouseType As Int) fkidHouseType, CAST('Vic' AS VARCHAR(3)) State      &lt;br /&gt;From tblHouse &lt;/p&gt;    &lt;p&gt;I know it's a work around, but for now, I don't have to manually change the EDMX XML every time I update the schema. &lt;/p&gt;    &lt;p&gt;Let me know if you find a better solution or a more efficient way of specifying Nullable values in a View.&lt;/p&gt; &lt;/span&gt;  &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5560686125469499114-82245769954813084?l=asheeshsoni.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/1gzLKQxUl4_B5siWvkUezMNuSwY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1gzLKQxUl4_B5siWvkUezMNuSwY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/1gzLKQxUl4_B5siWvkUezMNuSwY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1gzLKQxUl4_B5siWvkUezMNuSwY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=G6otyvRxh08:iIe_BwTVYk4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=G6otyvRxh08:iIe_BwTVYk4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=G6otyvRxh08:iIe_BwTVYk4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=G6otyvRxh08:iIe_BwTVYk4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=G6otyvRxh08:iIe_BwTVYk4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=G6otyvRxh08:iIe_BwTVYk4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=G6otyvRxh08:iIe_BwTVYk4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=G6otyvRxh08:iIe_BwTVYk4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=G6otyvRxh08:iIe_BwTVYk4:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=G6otyvRxh08:iIe_BwTVYk4:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=G6otyvRxh08:iIe_BwTVYk4:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/asheeshsoni/~4/G6otyvRxh08" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://asheeshsoni.blogspot.com/feeds/82245769954813084/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5560686125469499114&amp;postID=82245769954813084" title="6 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/82245769954813084?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/82245769954813084?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/asheeshsoni/~3/G6otyvRxh08/entity-framework-messes-up-primary-keys.html" title="Entity Framework messes up Primary Keys of Views - A work around" /><author><name>Asheesh Soni</name><uri>http://www.blogger.com/profile/02330553325420758034</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>6</thr:total><feedburner:origLink>http://asheeshsoni.blogspot.com/2009/09/entity-framework-messes-up-primary-keys.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0YNQ3g9eCp7ImA9WxNTEkw.&quot;"><id>tag:blogger.com,1999:blog-5560686125469499114.post-3694252188319373044</id><published>2009-08-14T11:50:00.001+10:00</published><updated>2009-08-14T11:59:52.660+10:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-14T11:59:52.660+10:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="silverlight" /><category scheme="http://www.blogger.com/atom/ns#" term=".Net" /><title>Bulleted list in Silverlight</title><content type="html">&lt;p&gt;While working on a Silverlight 3 application, I needed a bulleted list similar to an unordered list in html. I simply needed to display an Array as a bulleted list.To my surprise, there is no support for this in silverlight. Even in version 3. C'mon, I thought Microsoft gets it right in version 3?&lt;/p&gt; &lt;span class="fullpost"&gt;   &lt;p&gt;Google (and this time I even tried Bing) only returned the following relevant links:&lt;/p&gt;    &lt;p&gt;&lt;a href="http://www.codeproject.com/KB/silverlight/OrderedList_Silverlight.aspx"&gt;http://www.codeproject.com/KB/silverlight/OrderedList_Silverlight.aspx&lt;/a&gt;       &lt;br /&gt;&lt;a href="http://silverlight.net/forums/t/5148.aspx"&gt;http://silverlight.net/forums/t/5148.aspx&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;Numbered And Bulleted Lists for Silverlight By Matt Perdeck on Code Project looked very promising, but its more than an year old, some users have commented that it doesn't work, and the author seems to have disappeared as he never replied to any comments. Nah... don't wanna use such a project for a production application.&lt;/p&gt;    &lt;p&gt;After experimenting a while with ListBox I came up with the following solution:&lt;/p&gt;    &lt;pre class="code"&gt;&lt;span style="color: blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;ListBox &lt;/span&gt;&lt;span style="color: red"&gt;ItemsSource&lt;/span&gt;&lt;span style="color: blue"&gt;=&amp;quot;{&lt;/span&gt;&lt;span style="color: #a31515"&gt;Binding &lt;/span&gt;&lt;span style="color: red"&gt;MyArray&lt;/span&gt;&lt;span style="color: blue"&gt;}&amp;quot; &lt;/span&gt;&lt;span style="color: red"&gt;Background&lt;/span&gt;&lt;span style="color: blue"&gt;=&amp;quot;Transparent&amp;quot; &lt;/span&gt;&lt;span style="color: red"&gt;BorderThickness&lt;/span&gt;&lt;span style="color: blue"&gt;=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;    &amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;ListBox.ItemTemplate&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;br /&gt;        &amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;DataTemplate&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;br /&gt;            &amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;fxui&lt;/span&gt;&lt;span style="color: blue"&gt;:&lt;/span&gt;&lt;span style="color: #a31515"&gt;HStackPanel&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;br /&gt;                &amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;TextBlock &lt;/span&gt;&lt;span style="color: red"&gt;Text&lt;/span&gt;&lt;span style="color: blue"&gt;=&amp;quot;&amp;#8226; &amp;quot;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;TextBlock&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;br /&gt;                &amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;TextBlock &lt;/span&gt;&lt;span style="color: red"&gt;Text&lt;/span&gt;&lt;span style="color: blue"&gt;=&amp;quot;{&lt;/span&gt;&lt;span style="color: #a31515"&gt;Binding&lt;/span&gt;&lt;span style="color: blue"&gt;}&amp;quot;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;TextBlock&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;br /&gt;            &amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;fxui&lt;/span&gt;&lt;span style="color: blue"&gt;:&lt;/span&gt;&lt;span style="color: #a31515"&gt;HStackPanel&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;br /&gt;        &amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;DataTemplate&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;br /&gt;    &amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;ListBox.ItemTemplate&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;br /&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;ListBox&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;You can replace fxui:HStackPanel with a standard StackPanel with a Horizontal layout. It works like a charm. &lt;br /&gt;&lt;br /&gt;PS: If you are interested in MVVM for silverlight, have a look at the &lt;a href="http://projects.nikhilk.net/SilverlightFX/"&gt;SilverlightFX&lt;/a&gt; framework by Nikhil. &lt;/span&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5560686125469499114-3694252188319373044?l=asheeshsoni.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/hY9F9BcE05_spkgPRC_y4NF0rnY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hY9F9BcE05_spkgPRC_y4NF0rnY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/hY9F9BcE05_spkgPRC_y4NF0rnY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hY9F9BcE05_spkgPRC_y4NF0rnY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=hiN6bifSsms:G50JFvxE4gc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=hiN6bifSsms:G50JFvxE4gc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=hiN6bifSsms:G50JFvxE4gc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=hiN6bifSsms:G50JFvxE4gc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=hiN6bifSsms:G50JFvxE4gc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=hiN6bifSsms:G50JFvxE4gc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=hiN6bifSsms:G50JFvxE4gc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=hiN6bifSsms:G50JFvxE4gc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=hiN6bifSsms:G50JFvxE4gc:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=hiN6bifSsms:G50JFvxE4gc:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=hiN6bifSsms:G50JFvxE4gc:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/asheeshsoni/~4/hiN6bifSsms" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://asheeshsoni.blogspot.com/feeds/3694252188319373044/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5560686125469499114&amp;postID=3694252188319373044" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/3694252188319373044?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/3694252188319373044?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/asheeshsoni/~3/hiN6bifSsms/bulleted-list-in-silverlight.html" title="Bulleted list in Silverlight" /><author><name>Asheesh Soni</name><uri>http://www.blogger.com/profile/02330553325420758034</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://asheeshsoni.blogspot.com/2009/08/bulleted-list-in-silverlight.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0QASHg4fip7ImA9WxJWE0w.&quot;"><id>tag:blogger.com,1999:blog-5560686125469499114.post-8760739822201778781</id><published>2009-06-18T17:34:00.001+10:00</published><updated>2009-06-18T17:49:09.636+10:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-18T17:49:09.636+10:00</app:edited><title>Silverlight Slider - Jump Value by SmallChange when dragged</title><content type="html">&lt;p&gt;Not long ago, I needed a &lt;a href="http://blog.webjak.net/2009/05/10/silverlight-slider-that-snaps-to-rounded-value-when-dragged"&gt;similar functionality&lt;/a&gt;. &lt;/p&gt;  &lt;p&gt;But my requirement wasn't just whole numbers. I wanted the slider to jump by what ever I set SmallChange to (for e.g. 1000). So the range could be... 3000 to 7000 with possible values = (3k, 4k, 5k, 6k and 7k) and the Slider should snap to the corresponding values while dragging.&lt;/p&gt;  &lt;p&gt;The formula to get the values was very simple and straight forward: (Math.Round((Val - Min)/Sml) * Sml) + Min &lt;/p&gt;  &lt;p&gt;But How do I coerce the value to that? &lt;/p&gt; &lt;span class="fullpost"&gt;   &lt;p&gt;Hey! Value is a DependencyProperty... right?      &lt;br /&gt;So I can use coercion... May be Slider has a Coerce method that coerces the value based on Min, Max etc. and I can derive from it and override the method so it'll respect the SmallChange property as well? &lt;/p&gt;    &lt;p&gt;I fired up &lt;a href="http://www.red-gate.com/products/reflector/"&gt;Reflector&lt;/a&gt; to inspect System.Windows.Controls.Slider.       &lt;br /&gt;Hmm... Doesn't have any coercion, but the OnValueChanged method is simply calling the base.OnValueChanged... and Slider derives from RangeBase &lt;/p&gt;    &lt;p&gt;Aha! RangeBase has a CoerceValue method.      &lt;br /&gt;D'Oh... its private... not protected. Crap!       &lt;br /&gt;I could have simply overridden this one method in my derived MyRangeBase and be done with it. &lt;/p&gt;    &lt;p&gt;Wait a minute... didn't Microsoft release the &lt;a href="http://blogs.msdn.com/seema/archive/2009/01/07/published-the-control-source-code-for-silverlight-2-runtime-sdk.aspx"&gt;source code&lt;/a&gt; for most of the Silverlight Controls? &lt;/p&gt;    &lt;p&gt;Thats it... I copied the RangeBase.cs, Slider.cs and VisualStates.cs from the above source code and modified the following: &lt;/p&gt;    &lt;p&gt;1. Renamed RangeBase to MyRangeBase (and let VS do the magic)      &lt;br /&gt;2. Renamed Slider to MySlider (and again let VS do the work for me)       &lt;br /&gt;3. Change base class of MySlider to MyRangeBase       &lt;br /&gt;4. Changed the CoerceValue() of MyRangeBase to&lt;/p&gt;    &lt;pre class="code"&gt;&lt;span style="color: blue"&gt;private void &lt;/span&gt;CoerceValue()&lt;br /&gt;{&lt;br /&gt;    &lt;span style="color: blue"&gt;double &lt;/span&gt;minimum = Minimum;&lt;br /&gt;    &lt;span style="color: blue"&gt;double &lt;/span&gt;maximum = Maximum;&lt;br /&gt;    &lt;span style="color: blue"&gt;double &lt;/span&gt;value = Value;&lt;br /&gt;    &lt;span style="color: blue"&gt;double &lt;/span&gt;coercedValue = _requestedVal;&lt;br /&gt;&lt;br /&gt;    &lt;span style="color: blue"&gt;if &lt;/span&gt;(SmallChange != 0)&lt;br /&gt;    {&lt;br /&gt;        coercedValue = (&lt;span style="color: #2b91af"&gt;Math&lt;/span&gt;.Round((_requestedVal - minimum) / SmallChange) * SmallChange) + minimum;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    &lt;span style="color: blue"&gt;if &lt;/span&gt;(coercedValue != value &amp;amp;&amp;amp; coercedValue &amp;gt;= minimum &amp;amp;&amp;amp; coercedValue &amp;lt;= maximum)&lt;br /&gt;    {&lt;br /&gt;        SetValue(ValueProperty, coercedValue);&lt;br /&gt;    }&lt;br /&gt;    &lt;span style="color: blue"&gt;else&lt;br /&gt;    &lt;/span&gt;{&lt;br /&gt;        &lt;span style="color: blue"&gt;if &lt;/span&gt;(value &amp;lt; minimum)&lt;br /&gt;        {&lt;br /&gt;            SetValue(ValueProperty, minimum);&lt;br /&gt;        }&lt;br /&gt;        &lt;span style="color: blue"&gt;if &lt;/span&gt;(value &amp;gt; maximum)&lt;br /&gt;        {&lt;br /&gt;            SetValue(ValueProperty, maximum);&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;}&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;p&gt;That's it. It worked like a charm :) &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;  &lt;p&gt;Enjoy!&lt;/p&gt;&lt;br /&gt;&lt;/span&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5560686125469499114-8760739822201778781?l=asheeshsoni.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/NtGtYULj5FQ7ccXh0rBn0HB_P1o/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NtGtYULj5FQ7ccXh0rBn0HB_P1o/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/NtGtYULj5FQ7ccXh0rBn0HB_P1o/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NtGtYULj5FQ7ccXh0rBn0HB_P1o/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=ayTXAcJWHdI:mnT4GWiP5YM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=ayTXAcJWHdI:mnT4GWiP5YM:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=ayTXAcJWHdI:mnT4GWiP5YM:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=ayTXAcJWHdI:mnT4GWiP5YM:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=ayTXAcJWHdI:mnT4GWiP5YM:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=ayTXAcJWHdI:mnT4GWiP5YM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=ayTXAcJWHdI:mnT4GWiP5YM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=ayTXAcJWHdI:mnT4GWiP5YM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=ayTXAcJWHdI:mnT4GWiP5YM:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=ayTXAcJWHdI:mnT4GWiP5YM:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=ayTXAcJWHdI:mnT4GWiP5YM:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/asheeshsoni/~4/ayTXAcJWHdI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://asheeshsoni.blogspot.com/feeds/8760739822201778781/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5560686125469499114&amp;postID=8760739822201778781" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/8760739822201778781?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/8760739822201778781?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/asheeshsoni/~3/ayTXAcJWHdI/silverlight-slider-jump-value-by.html" title="Silverlight Slider - Jump Value by SmallChange when dragged" /><author><name>Asheesh Soni</name><uri>http://www.blogger.com/profile/02330553325420758034</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>3</thr:total><feedburner:origLink>http://asheeshsoni.blogspot.com/2009/06/silverlight-slider-jump-value-by.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C08NSHs_cCp7ImA9WxRXGEw.&quot;"><id>tag:blogger.com,1999:blog-5560686125469499114.post-7899653610490492395</id><published>2008-10-24T12:28:00.000+11:00</published><updated>2008-10-24T12:31:39.548+11:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-24T12:31:39.548+11:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Astoria" /><category scheme="http://www.blogger.com/atom/ns#" term="Data Services" /><category scheme="http://www.blogger.com/atom/ns#" term=".Net" /><title>Astoria futures: offline enabled data services - Scenario and Requirements Discussion</title><content type="html">&lt;p&gt;Are you a software architect facing a challenge to design applications that work like Outlook?    &lt;br /&gt;(I know that's a vague description, but that's what you get from clients... don't you?)     &lt;br /&gt;Do you have a requirement where applications work offline most of the time and then sync back to the central database? &lt;/p&gt;  &lt;p&gt;If you have implemented one-off custom solutions for offline syncing, then Astoria Offline is the way to go! &lt;/p&gt; &lt;span class="fullpost"&gt;   &lt;p&gt;If you didn't attend Mix 08 or haven't heard of Astoria Offline, there is a msdn blog by Pablo Castro on &lt;a href="http://blogs.msdn.com/astoriateam/archive/2008/10/22/astoria-futures-offline-enabled-data-services.aspx"&gt;Astoria futures: offline enabled data services&lt;/a&gt;. &lt;/p&gt;    &lt;p&gt;&lt;strong&gt;My post is simply to discuss&lt;/strong&gt;:&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;various scenarios where Astoria Offline could be useful, &lt;/li&gt;      &lt;li&gt;what is the existing architecture of these applications, &lt;/li&gt;      &lt;li&gt;how you envision your apps in the future (technologies and architecture) &lt;/li&gt;      &lt;li&gt;and what features you'd like to see in Astoria Offline &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;I have created a poll on this blog to get a feedback on (if and) how you plan to use Astoria Offline when it is released.&lt;/p&gt;    &lt;p&gt;&lt;strong&gt;Our Scenario, Existing Architecture, and Project Requirements&lt;/strong&gt;:&lt;/p&gt;    &lt;p&gt;I work for a construction company that has sales consultants (SC) and construction supervisors (CS) on field.      &lt;br /&gt;We have a centralised end to end work flow system (from leads to sales to construction to settlement). &lt;/p&gt;    &lt;p&gt;At different stages of this work flow, we have different set of requirements.      &lt;br /&gt;For example, &lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;The SC and CS modules would be deployed on PDAs (ideal candidates for Astoria Offline)&lt;/li&gt;      &lt;li&gt;Some parts of the system our going to be web based (like System Administration etc)&lt;/li&gt;      &lt;li&gt;Some parts (that use Autocad / image processing or other processor intensive tasks) are deployed on the desktop. &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;At the moment, our entire system is web based (.Net 2.0 with some jQuery goodness for desktop browsers)      &lt;br /&gt;So the PDAs have to be online all the time. We did implement our own local storage and offline syncing, but its a pain in the a$$. &lt;/p&gt;    &lt;p&gt;My plan is to&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;Use WPF for our rich and processor intensive Desktop applications.&lt;/li&gt;      &lt;li&gt;Silverlight for our internet applications (so we could reuse most of our WPF code)&lt;/li&gt;      &lt;li&gt;And, html with jQuery (or Silverlight) for PDAs. &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;Now, all of the three would utilise a common Business Layer hooked to a Backend Data Layer. And all three would benefit if the Data layer is based on Astoria Offline. But the greatest impact will be on the PDA Apps because consultants and supervisors would be able to work offline most of the times, and sync their PDAs when online.&lt;/p&gt;    &lt;p&gt;&lt;strong&gt;Your Scenario, Existing Architecture, and Plans&lt;/strong&gt;:&lt;/p&gt;    &lt;p&gt;Feel free to discuss how you think your organisation / applications could utilise Astoria Offline, and what features you look forward to in it? &lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;What sort of data store are you most likely to use? &lt;/li&gt;      &lt;li&gt;Are the applications primarily going to be on mobile devices? Desktops? &lt;/li&gt;      &lt;li&gt;What front-end technologies do you plan to use? (WPF / Silverlight / html + jQuery / others)? &lt;/li&gt;      &lt;li&gt;Other considerations / platform requirements / compatibility issues / concerns? &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;Looking forward to a healthy discussion and &lt;em&gt;&amp;lt;wishful thinking&amp;gt;&lt;/em&gt;Astoria Offline RTW&lt;em&gt;&amp;lt;/wishful thinking&amp;gt;&lt;/em&gt;&lt;/p&gt; &lt;/span&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5560686125469499114-7899653610490492395?l=asheeshsoni.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/GzmgTOIwQ2A_btcsvhPXbmtrsuM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GzmgTOIwQ2A_btcsvhPXbmtrsuM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/GzmgTOIwQ2A_btcsvhPXbmtrsuM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GzmgTOIwQ2A_btcsvhPXbmtrsuM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=3mm0ajQcdmU:HJ_jHdI6eqg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=3mm0ajQcdmU:HJ_jHdI6eqg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=3mm0ajQcdmU:HJ_jHdI6eqg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=3mm0ajQcdmU:HJ_jHdI6eqg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=3mm0ajQcdmU:HJ_jHdI6eqg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=3mm0ajQcdmU:HJ_jHdI6eqg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=3mm0ajQcdmU:HJ_jHdI6eqg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=3mm0ajQcdmU:HJ_jHdI6eqg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=3mm0ajQcdmU:HJ_jHdI6eqg:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=3mm0ajQcdmU:HJ_jHdI6eqg:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=3mm0ajQcdmU:HJ_jHdI6eqg:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/asheeshsoni/~4/3mm0ajQcdmU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://asheeshsoni.blogspot.com/feeds/7899653610490492395/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5560686125469499114&amp;postID=7899653610490492395" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/7899653610490492395?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/7899653610490492395?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/asheeshsoni/~3/3mm0ajQcdmU/astoria-futures-offline-enabled-data.html" title="Astoria futures: offline enabled data services - Scenario and Requirements Discussion" /><author><name>Asheesh Soni</name><uri>http://www.blogger.com/profile/02330553325420758034</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://asheeshsoni.blogspot.com/2008/10/astoria-futures-offline-enabled-data.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkYFRX07fyp7ImA9WxRRFko.&quot;"><id>tag:blogger.com,1999:blog-5560686125469499114.post-9109614509111848761</id><published>2008-09-29T16:16:00.007+10:00</published><updated>2008-09-29T16:35:14.307+10:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-29T16:35:14.307+10:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="visual studio" /><category scheme="http://www.blogger.com/atom/ns#" term="news" /><category scheme="http://www.blogger.com/atom/ns#" term="Ajax" /><category scheme="http://www.blogger.com/atom/ns#" term="jQuery" /><title>jQuery to ship with Microsoft ASP.Net</title><content type="html">Awesome!&lt;br /&gt;&lt;br /&gt;I was having a hard time trying to convince my employer to use jQuery with ASP.Net Ajax Control Toolkit.&lt;br /&gt;&lt;br /&gt;Main issues were:&lt;br /&gt;1. jQuery is not supported by Microsoft.&lt;br /&gt;2. jQuery duplicates a lot of functionality that MS Ajax provides, which leads to confusion, larger footprint, and dependency on two libraries for similar functionality.&lt;br /&gt;&lt;br /&gt;I'm glad now I can freely use the power of jQuery. Not only is Microsoft going to be shipping jQuery with Visual Studio, its also going to build controls that utilise jQuery.&lt;br /&gt;&lt;br /&gt;But, I wonder how Microsoft will address the overlap between ASP.NET AJAX Library and jQuery. I’ve been using jQuery to complement ASP.NET AJAX, but I’ve always been concerned about the overlap between the two. Two libraries providing their own distinct methods to retrieve data, handle events etc.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Microsoft has clarified that they are going to use jQuery library "as-is". And obviously Microsoft has to keep their product backward compatible. So it seems this overlap will always exist. Thankfully, jQuery has a very small footprint, so this is not going to be a major issue for most people.&lt;br /&gt;&lt;br /&gt;Further links on this awesome news:&lt;br /&gt;     &lt;ul&gt;&lt;li&gt;&lt;a href="http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx"&gt;ScottGu on jQuery and Microsoft&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://jquery.com/blog/2008/09/28/jquery-microsoft-nokia/"&gt;John Resig: jQuery, Microsoft and Nokia&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.hanselman.com/blog/jQuerytoshipwithASPNETMVCandVisualStudio.aspx"&gt;Scott Hanselman: jQuery to ship with ASP.NET MVC and Visual Studio&lt;/a&gt; &lt;/li&gt;&lt;br /&gt; &lt;/ul&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5560686125469499114-9109614509111848761?l=asheeshsoni.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KAwTnXHHfkSRnsMM84bjm15tA8A/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KAwTnXHHfkSRnsMM84bjm15tA8A/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/KAwTnXHHfkSRnsMM84bjm15tA8A/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KAwTnXHHfkSRnsMM84bjm15tA8A/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=rcaqF6h3G1U:5072NRrFys8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=rcaqF6h3G1U:5072NRrFys8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=rcaqF6h3G1U:5072NRrFys8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=rcaqF6h3G1U:5072NRrFys8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=rcaqF6h3G1U:5072NRrFys8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=rcaqF6h3G1U:5072NRrFys8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=rcaqF6h3G1U:5072NRrFys8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=rcaqF6h3G1U:5072NRrFys8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=rcaqF6h3G1U:5072NRrFys8:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=rcaqF6h3G1U:5072NRrFys8:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=rcaqF6h3G1U:5072NRrFys8:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/asheeshsoni/~4/rcaqF6h3G1U" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://asheeshsoni.blogspot.com/feeds/9109614509111848761/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5560686125469499114&amp;postID=9109614509111848761" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/9109614509111848761?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/9109614509111848761?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/asheeshsoni/~3/rcaqF6h3G1U/jquery-to-ship-with-microsoft-aspnet.html" title="jQuery to ship with Microsoft ASP.Net" /><author><name>Asheesh Soni</name><uri>http://www.blogger.com/profile/02330553325420758034</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://asheeshsoni.blogspot.com/2008/09/jquery-to-ship-with-microsoft-aspnet.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEMAQXc4fyp7ImA9WxRRFEQ.&quot;"><id>tag:blogger.com,1999:blog-5560686125469499114.post-7011838212238803577</id><published>2008-09-27T16:18:00.001+10:00</published><updated>2008-09-27T16:20:40.937+10:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-27T16:20:40.937+10:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="silverlight" /><category scheme="http://www.blogger.com/atom/ns#" term="news" /><title>Silverlight 2 RC0 Released for Developers</title><content type="html">&lt;a href="http://silverlight.net/GetStarted/sl2rc0.aspx"&gt;Download SL2RC0&lt;/a&gt;&lt;br /&gt;Note... RC0 is a developer release only!&lt;br /&gt;Read more on &lt;a href="http://weblogs.asp.net/scottgu/archive/2008/09/25/silverlight-2-release-candidate-now-available.aspx"&gt;ScottGu's Blog&lt;/a&gt; and &lt;a href="http://timheuer.com/blog/archive/2008/09/25/silveright-rc0-released-for-developers.aspx"&gt;Tim's Blog&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5560686125469499114-7011838212238803577?l=asheeshsoni.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KI7cbjaTdai0c1v1THTvxu9PXnk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KI7cbjaTdai0c1v1THTvxu9PXnk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/KI7cbjaTdai0c1v1THTvxu9PXnk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KI7cbjaTdai0c1v1THTvxu9PXnk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=__dcez_6FqY:_Qvjb_s3yuw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=__dcez_6FqY:_Qvjb_s3yuw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=__dcez_6FqY:_Qvjb_s3yuw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=__dcez_6FqY:_Qvjb_s3yuw:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=__dcez_6FqY:_Qvjb_s3yuw:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=__dcez_6FqY:_Qvjb_s3yuw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=__dcez_6FqY:_Qvjb_s3yuw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=__dcez_6FqY:_Qvjb_s3yuw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=__dcez_6FqY:_Qvjb_s3yuw:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=__dcez_6FqY:_Qvjb_s3yuw:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=__dcez_6FqY:_Qvjb_s3yuw:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/asheeshsoni/~4/__dcez_6FqY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://asheeshsoni.blogspot.com/feeds/7011838212238803577/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5560686125469499114&amp;postID=7011838212238803577" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/7011838212238803577?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/7011838212238803577?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/asheeshsoni/~3/__dcez_6FqY/silverlight-2-rc0-released-for.html" title="Silverlight 2 RC0 Released for Developers" /><author><name>Asheesh Soni</name><uri>http://www.blogger.com/profile/02330553325420758034</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>3</thr:total><feedburner:origLink>http://asheeshsoni.blogspot.com/2008/09/silverlight-2-rc0-released-for.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkMDQX44eSp7ImA9WxRRFEQ.&quot;"><id>tag:blogger.com,1999:blog-5560686125469499114.post-203115097775437591</id><published>2008-09-27T15:33:00.006+10:00</published><updated>2008-09-27T15:47:50.031+10:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-27T15:47:50.031+10:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="visual studio" /><category scheme="http://www.blogger.com/atom/ns#" term="news" /><title>Microsoft Dev Sta Challenge 2008</title><content type="html">200 Hours, 8 Minutes. 1 Winner!&lt;br /&gt;Code your way to MIX 09 in Las Vegas!&lt;br /&gt;&lt;br /&gt;The challenge begins when the brief is released at 0808 EST on Monday 29 September. You’ll have just 200 hours and 8 minutes to prove your skills using Microsoft® Visual Studio® 2008. All entries must be submitted as a Microsoft Visual Studio 2008 project and be submitted to the devsta site before the challenge ends at 1716 EST on Tuesday 7 October 2008&lt;br /&gt;&lt;br /&gt;&lt;a href='http://devsta.microsoft.com.au/default.aspx'&gt;http://devsta.microsoft.com.au/default.aspx&lt;/a&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Your submission will be judged by a panel of experts, and the winner will receive an awesome DevSta prize pack worth over $18,000* RRP – including a trip to Las Vegas to attend the MIX09 Developer Conference, an an Xbox 360™ Elite console package and much more! With a total prize pool valued at over $33,000 RRP there are also fantastic runner-up prizes to be won!&lt;br /&gt;&lt;br /&gt;If that’s not enough, there's also a special prize for the best Windows Mobile application! You could WIN two Samsung i900 Omnia mobiles worth $849 RRP each and a Samsung 40" series 6 LCD TV valued at $3099 RRP!&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5560686125469499114-203115097775437591?l=asheeshsoni.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/yIdOSKmhUIijyLYLcVMgrBzOw7I/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yIdOSKmhUIijyLYLcVMgrBzOw7I/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/yIdOSKmhUIijyLYLcVMgrBzOw7I/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yIdOSKmhUIijyLYLcVMgrBzOw7I/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=fO0mfJl1bcg:GAmsQjTjqOk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=fO0mfJl1bcg:GAmsQjTjqOk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=fO0mfJl1bcg:GAmsQjTjqOk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=fO0mfJl1bcg:GAmsQjTjqOk:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=fO0mfJl1bcg:GAmsQjTjqOk:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=fO0mfJl1bcg:GAmsQjTjqOk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=fO0mfJl1bcg:GAmsQjTjqOk:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=fO0mfJl1bcg:GAmsQjTjqOk:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=fO0mfJl1bcg:GAmsQjTjqOk:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/asheeshsoni?a=fO0mfJl1bcg:GAmsQjTjqOk:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/asheeshsoni?i=fO0mfJl1bcg:GAmsQjTjqOk:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/asheeshsoni/~4/fO0mfJl1bcg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://asheeshsoni.blogspot.com/feeds/203115097775437591/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5560686125469499114&amp;postID=203115097775437591" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/203115097775437591?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5560686125469499114/posts/default/203115097775437591?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/asheeshsoni/~3/fO0mfJl1bcg/microsoft-dev-sta-challenge-2008.html" title="Microsoft Dev Sta Challenge 2008" /><author><name>Asheesh Soni</name><uri>http://www.blogger.com/profile/02330553325420758034</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://asheeshsoni.blogspot.com/2008/09/microsoft-dev-sta-challenge-2008.html</feedburner:origLink></entry></feed>

