<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Interview Tips &#187; .NET</title>
	<atom:link href="http://tipsinterview.com/category/dotnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://tipsinterview.com</link>
	<description>Interview Tips, Interview Questions and Answers</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:45:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Configure MySql .Net Connector with Entity Framework</title>
		<link>http://tipsinterview.com/2011/10/05/configure-mysql-net-connector-with-entity-framework/</link>
		<comments>http://tipsinterview.com/2011/10/05/configure-mysql-net-connector-with-entity-framework/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 07:47:28 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[input system]]></category>
		<category><![CDATA[Linq]]></category>
		<category><![CDATA[lt system]]></category>
		<category><![CDATA[object entity]]></category>
		<category><![CDATA[provider]]></category>
		<category><![CDATA[registration entry]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[web server application]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=609</guid>
		<description><![CDATA[To communicate from .NET code to MySQL database using Entity Framework we installed MySql .NET Connector. It worked fine out of the box on developer's workstations but once deployed to hosted web server application started to throw following error: [NotSupportedException: Unable to determine the provider name for connection of type 'MySql.Data.MySqlClient.MySqlConnection'.] System.Data.Entity.ModelConfiguration.Utilities.DbConnectionExtensions.GetProviderInvariantName(DbConnection connection) System.Data.Entity.ModelConfiguration.Utilities.DbConnectionExtensions.GetProviderInfo(DbConnection connection, [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/10/05/configure-mysql-net-connector-with-entity-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code Issues specific to partial methods</title>
		<link>http://tipsinterview.com/2011/10/01/code-issues-specific-to-partial-methods/</link>
		<comments>http://tipsinterview.com/2011/10/01/code-issues-specific-to-partial-methods/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 07:46:29 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[access modifiers]]></category>
		<category><![CDATA[CodeRush]]></category>
		<category><![CDATA[Declaration]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[extern]]></category>
		<category><![CDATA[method declaration]]></category>
		<category><![CDATA[override]]></category>
		<category><![CDATA[Partial]]></category>
		<category><![CDATA[partial structure]]></category>
		<category><![CDATA[void]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=607</guid>
		<description><![CDATA[There are several conditions that are applied to partial methods, such as: Partial methods must be void Signatures of both parts of partial methods must match Access modifiers are not allowed for partial methods Partial methods must be declared in partial classes etc You don’t have to remember all these conditions if you have the [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/10/01/code-issues-specific-to-partial-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filtering Data in Web Forms Model Binding</title>
		<link>http://tipsinterview.com/2011/09/13/filtering-data-in-web-forms-model-binding/</link>
		<comments>http://tipsinterview.com/2011/09/13/filtering-data-in-web-forms-model-binding/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 07:42:06 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[GetProducts]]></category>
		<category><![CDATA[keyword parameter]]></category>
		<category><![CDATA[method argument]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[Product]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[query string]]></category>
		<category><![CDATA[type conversion]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[value provider]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=597</guid>
		<description><![CDATA[To enable filtering, we’ll update our GetProducts() method to take a keyword parameter like below: public IQueryable&#60;Product&#62; GetProducts([QueryString]string keyword) {     IQueryable&#60;Product&#62; query = db.Products;       if (!String.IsNullOrWhiteSpace(keyword))     {         query = query.Where(p =&#62; p.ProductName.Contains(keyword));     }       return query; } If the keyword is empty or null, then the method returns [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/09/13/filtering-data-in-web-forms-model-binding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPF interview questions</title>
		<link>http://tipsinterview.com/2011/09/02/wpf-interview-questions/</link>
		<comments>http://tipsinterview.com/2011/09/02/wpf-interview-questions/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 01:38:07 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[change notification]]></category>
		<category><![CDATA[Entry]]></category>
		<category><![CDATA[interview questions]]></category>
		<category><![CDATA[Mid]]></category>
		<category><![CDATA[Mid-level]]></category>
		<category><![CDATA[NOtification]]></category>
		<category><![CDATA[performance tuning]]></category>
		<category><![CDATA[ResourceDictionary]]></category>
		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=585</guid>
		<description><![CDATA[Entry Level Property Change NOtification (INotifyPropertyChange and ObservableCollection) ResourceDictionary UserControls Mid Level Blend/Cider animations and storyboarding ClickOnce Deployment Senior WPF 3D Differences between Silverlight 2 and WPF MVVM/MVP WPF Performance tuning Pixel Shaders Entry Level Property Change NOtification (INotifyPropertyChange and ObservableCollection) ResourceDictionary UserControls Mid Level Blend/Cider animations and storyboarding ClickOnce Deployment Senior WPF 3D Differences [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/09/02/wpf-interview-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When should I use WPF instead of DirectX?</title>
		<link>http://tipsinterview.com/2011/08/29/when-should-i-use-wpf-instead-of-directx/</link>
		<comments>http://tipsinterview.com/2011/08/29/when-should-i-use-wpf-instead-of-directx/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 01:40:27 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[3d models]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[assembly]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[differentiator]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[level abstraction]]></category>
		<category><![CDATA[level interface]]></category>
		<category><![CDATA[measuring performance]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=593</guid>
		<description><![CDATA[DirectX is definitely not dead and is still more appropriate than WPF for advanced developers writing hard-core “twitch games” or applications with complex 3D models where you need maximum performance. That said, it’s easy to write a naive DirectX application that performs far worse than a similar WPF application. DirectX is a low-level interface to [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/08/29/when-should-i-use-wpf-instead-of-directx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is XAML?</title>
		<link>http://tipsinterview.com/2011/08/25/what-is-xaml/</link>
		<comments>http://tipsinterview.com/2011/08/25/what-is-xaml/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 01:39:47 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[class definitions]]></category>
		<category><![CDATA[definition]]></category>
		<category><![CDATA[markup language]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[set]]></category>
		<category><![CDATA[time logic]]></category>
		<category><![CDATA[ui elements]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=591</guid>
		<description><![CDATA[It is Declarative Markup Language. It simplifies creating a UI for a .NET Framework application. It can create visible UI elements in XAML , and then separate the UI definition from the run-time logic by using code-behind files. This joined to the markup through partial class definitions. XAML represents the instantiation of objects in a [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/08/25/what-is-xaml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is WPF ? Why it is used?</title>
		<link>http://tipsinterview.com/2011/08/15/what-is-wpf-why-it-is-used/</link>
		<comments>http://tipsinterview.com/2011/08/15/what-is-wpf-why-it-is-used/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 01:39:24 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[3d graphics]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[application markup language]]></category>
		<category><![CDATA[Controls]]></category>
		<category><![CDATA[design customization]]></category>
		<category><![CDATA[DirectX]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[Uses]]></category>
		<category><![CDATA[win32 applications]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=589</guid>
		<description><![CDATA[WPF is Object Oriented , XAML based. It Uses DirectX Engine for rendering GUI It do not use GDI 32 programming at all as opposed to Win32 applications It do not require more time or cost for graphics, drawing or animation programming It is Easy to change resolution unlike win32 application It is XAML Friendly. [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/08/15/what-is-wpf-why-it-is-used/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mid-level WPF interview questions</title>
		<link>http://tipsinterview.com/2011/08/12/mid-level-wpf-interview-questions/</link>
		<comments>http://tipsinterview.com/2011/08/12/mid-level-wpf-interview-questions/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 01:36:42 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[artur]]></category>
		<category><![CDATA[Converters]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[interoperability]]></category>
		<category><![CDATA[interview questions]]></category>
		<category><![CDATA[layout engine]]></category>
		<category><![CDATA[Mid-level]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[worker threads]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=581</guid>
		<description><![CDATA[Routed Events &#38; Commands Converters - Added by Artur Carvalho Explain WPF's 2-pass layout engine? How to implement a panel? Interoperability (WPF/WinForms) Blend/Cider - Added by a7an Animations and Storyboarding ClickOnce Deployment Skinning/Themeing Custom Controls How can worker threads update the UI? DataTemplate vs HierarchicalDataTemplate ItemsControl vs ItemsPresenter vs ContentControl vs ContentPresenter Different types of [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/08/12/mid-level-wpf-interview-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPF Interview Questions</title>
		<link>http://tipsinterview.com/2011/08/08/wpf-interview-questions-2/</link>
		<comments>http://tipsinterview.com/2011/08/08/wpf-interview-questions-2/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 01:38:49 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Controls]]></category>
		<category><![CDATA[Dispatcher]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[interview questions]]></category>
		<category><![CDATA[real time]]></category>
		<category><![CDATA[subset]]></category>
		<category><![CDATA[time applications]]></category>
		<category><![CDATA[Types]]></category>
		<category><![CDATA[web applications]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=587</guid>
		<description><![CDATA[1. What is WPF ? Why it is used? 2. What is XAML? 3. What is Dispatcher Object? 4. What is Dependency Object? 5. What is the architecture of WPF? 6.What is are Types of events and Event Routing or a Routed Event? 7. What is difference between Event Bubbling vs Event Tunneling? When to [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/08/08/wpf-interview-questions-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic WPF interview questions</title>
		<link>http://tipsinterview.com/2011/08/02/basic-wpf-interview-questions/</link>
		<comments>http://tipsinterview.com/2011/08/02/basic-wpf-interview-questions/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 01:36:34 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[Background]]></category>
		<category><![CDATA[change notification]]></category>
		<category><![CDATA[dependency]]></category>
		<category><![CDATA[interview questions]]></category>
		<category><![CDATA[markup language]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[observablecollection]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[UIElement]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=579</guid>
		<description><![CDATA[Strong .NET 2.0 Background &#38; willing to learn! Explain dependency properties? What's a style? What's a template? Binding Differences between base classes: Visual, UIElement, FrameworkElement, Control Visual vs Logical tree? Property Change Notification (INotifyPropertyChange and ObservableCollection) ResourceDictionary - Added by a7an UserControls - Added by a7an difference between bubble and tunnel routing strategies - added [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/08/02/basic-wpf-interview-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

