<?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 for Akash Kava</title>
	<atom:link href="http://akashkava.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://akashkava.com/blog</link>
	<description>Founder of NeuroSpeech</description>
	<lastBuildDate>Sun, 25 Sep 2011 06:35:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>Comment on MEF vs. Unity in composite application (Prism) by Akash Kava</title>
		<link>http://akashkava.com/blog/391/mef-vs-unity-in-composite-application-prism/comment-page-1/#comment-21322</link>
		<dc:creator>Akash Kava</dc:creator>
		<pubDate>Sun, 25 Sep 2011 06:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://akashkava.com/blog/?p=391#comment-21322</guid>
		<description>Well I will look for better solution but what you can do is, create an additional interface called IExportedVehical derived from IVehical and use it only on one class you need to export.</description>
		<content:encoded><![CDATA[<p>Well I will look for better solution but what you can do is, create an additional interface called IExportedVehical derived from IVehical and use it only on one class you need to export.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detach Entities Recursively and Attach to New DomainContext in Entity Framework and RIA Services by Akash Kava</title>
		<link>http://akashkava.com/blog/379/detach-entities-recursively-and-attach-to-new-domaincontext-in-entity-framework-and-ria-services/comment-page-1/#comment-21321</link>
		<dc:creator>Akash Kava</dc:creator>
		<pubDate>Sun, 25 Sep 2011 06:33:09 +0000</pubDate>
		<guid isPermaLink="false">http://akashkava.com/blog/?p=379#comment-21321</guid>
		<description>You might have to add some references if it does not compile. Can you post what error you are getting?</description>
		<content:encoded><![CDATA[<p>You might have to add some references if it does not compile. Can you post what error you are getting?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Huge File Storage in Database instead of File System by Akash Kava</title>
		<link>http://akashkava.com/blog/127/huge-file-storage-in-database-instead-of-file-system/comment-page-1/#comment-21320</link>
		<dc:creator>Akash Kava</dc:creator>
		<pubDate>Sun, 25 Sep 2011 06:31:21 +0000</pubDate>
		<guid isPermaLink="false">http://akashkava.com/blog/?p=127#comment-21320</guid>
		<description>Conversion should not be done at time of serving the file, instead most appropriate way would be to convert and store a converted file along with original file. And conversion should be batched as well.</description>
		<content:encoded><![CDATA[<p>Conversion should not be done at time of serving the file, instead most appropriate way would be to convert and store a converted file along with original file. And conversion should be batched as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detach Entities Recursively and Attach to New DomainContext in Entity Framework and RIA Services by Xusan</title>
		<link>http://akashkava.com/blog/379/detach-entities-recursively-and-attach-to-new-domaincontext-in-entity-framework-and-ria-services/comment-page-1/#comment-21085</link>
		<dc:creator>Xusan</dc:creator>
		<pubDate>Mon, 19 Sep 2011 20:30:45 +0000</pubDate>
		<guid isPermaLink="false">http://akashkava.com/blog/?p=379#comment-21085</guid>
		<description>Hi Akash Kava
Thank you for charming code thats really solved my problem, have used code in Silverlight but it seem like Attach method not compile in there can you suggest what changes needs to be done.

Regards.</description>
		<content:encoded><![CDATA[<p>Hi Akash Kava<br />
Thank you for charming code thats really solved my problem, have used code in Silverlight but it seem like Attach method not compile in there can you suggest what changes needs to be done.</p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MEF vs. Unity in composite application (Prism) by Yasmany</title>
		<link>http://akashkava.com/blog/391/mef-vs-unity-in-composite-application-prism/comment-page-1/#comment-20794</link>
		<dc:creator>Yasmany</dc:creator>
		<pubDate>Tue, 13 Sep 2011 15:06:19 +0000</pubDate>
		<guid isPermaLink="false">http://akashkava.com/blog/?p=391#comment-20794</guid>
		<description>Hi, I&#039;m new using MEF and I have a question. I have an interface &quot;IVehicle&quot; and two classes implementing this interface, then I have some other class with an IVehicle attribute. If I export my classes as IVehicle, then, when I inject the constructor and pass it the IVehicle object as parameter, I got an error, I suppose that is beacause I&#039;m exporting two classes under the same contract (I add the attribute [Export(typeof(IVehicle))] to both classes that implement such interface) and then the framework can&#039;t resolve wich contract use. I mark the constructor of the class that uses the IVehicle object with the [ImportingConstructor] attribute
How can I solve this??

P.D What I exactly want is to have various classes implementing an interface, and then, from another class, have an object of this interface which could take any of the types that implement such interface.</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;m new using MEF and I have a question. I have an interface &#8220;IVehicle&#8221; and two classes implementing this interface, then I have some other class with an IVehicle attribute. If I export my classes as IVehicle, then, when I inject the constructor and pass it the IVehicle object as parameter, I got an error, I suppose that is beacause I&#8217;m exporting two classes under the same contract (I add the attribute [Export(typeof(IVehicle))] to both classes that implement such interface) and then the framework can&#8217;t resolve wich contract use. I mark the constructor of the class that uses the IVehicle object with the [ImportingConstructor] attribute<br />
How can I solve this??</p>
<p>P.D What I exactly want is to have various classes implementing an interface, and then, from another class, have an object of this interface which could take any of the types that implement such interface.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MEF vs. Unity in composite application (Prism) by Gharieb</title>
		<link>http://akashkava.com/blog/391/mef-vs-unity-in-composite-application-prism/comment-page-1/#comment-19294</link>
		<dc:creator>Gharieb</dc:creator>
		<pubDate>Thu, 21 Jul 2011 08:54:25 +0000</pubDate>
		<guid isPermaLink="false">http://akashkava.com/blog/?p=391#comment-19294</guid>
		<description>Hi All, I&#039;m with Akash Kava in this post and i think this comparison is valid by default behavior fot both MEF and Unity</description>
		<content:encoded><![CDATA[<p>Hi All, I&#8217;m with Akash Kava in this post and i think this comparison is valid by default behavior fot both MEF and Unity</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Huge File Storage in Database instead of File System by Sanjay Bhaskar</title>
		<link>http://akashkava.com/blog/127/huge-file-storage-in-database-instead-of-file-system/comment-page-1/#comment-19133</link>
		<dc:creator>Sanjay Bhaskar</dc:creator>
		<pubDate>Fri, 15 Jul 2011 05:31:18 +0000</pubDate>
		<guid isPermaLink="false">http://akashkava.com/blog/?p=127#comment-19133</guid>
		<description>Very good inputs,

I&#039;ve a question.

If we save files like (.doc, .swf, etc..) we need to save this as Binary data. Would it be a performance intensive which needs the data conversion while serving this request? In case of file system i don&#039;t it need conversion, i assume its a direct access to the file with out any conversion.

Hope my question make sense.</description>
		<content:encoded><![CDATA[<p>Very good inputs,</p>
<p>I&#8217;ve a question.</p>
<p>If we save files like (.doc, .swf, etc..) we need to save this as Binary data. Would it be a performance intensive which needs the data conversion while serving this request? In case of file system i don&#8217;t it need conversion, i assume its a direct access to the file with out any conversion.</p>
<p>Hope my question make sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Captcha &#8211; What do you really see? by Akash Kava</title>
		<link>http://akashkava.com/blog/409/captcha-what-do-you-really-see/comment-page-1/#comment-17470</link>
		<dc:creator>Akash Kava</dc:creator>
		<pubDate>Sat, 04 Jun 2011 17:30:39 +0000</pubDate>
		<guid isPermaLink="false">http://akashkava.com/blog/409/captcha-what-do-you-really-see/#comment-17470</guid>
		<description>Cool, You will easily get a job at Microsoft :) since you understand their language.</description>
		<content:encoded><![CDATA[<p>Cool, You will easily get a job at Microsoft <img src='http://akashkava.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  since you understand their language.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Captcha &#8211; What do you really see? by Ates GÜRAL</title>
		<link>http://akashkava.com/blog/409/captcha-what-do-you-really-see/comment-page-1/#comment-17356</link>
		<dc:creator>Ates GÜRAL</dc:creator>
		<pubDate>Thu, 02 Jun 2011 11:12:26 +0000</pubDate>
		<guid isPermaLink="false">http://akashkava.com/blog/409/captcha-what-do-you-really-see/#comment-17356</guid>
		<description>it is “new laresoma”.I had to write again to correct my name.</description>
		<content:encoded><![CDATA[<p>it is “new laresoma”.I had to write again to correct my name.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MEF vs. Unity in composite application (Prism) by Akash Kava</title>
		<link>http://akashkava.com/blog/391/mef-vs-unity-in-composite-application-prism/comment-page-1/#comment-16589</link>
		<dc:creator>Akash Kava</dc:creator>
		<pubDate>Thu, 12 May 2011 08:28:03 +0000</pubDate>
		<guid isPermaLink="false">http://akashkava.com/blog/?p=391#comment-16589</guid>
		<description>Well I am not biased towards Unity, I am saying what Unity is good for and what MEF is good for. I understand customization of MEF and Unity both, both can be customized to take each other&#039;s place, but can we count man hours involved in it and what benefit do we get. Also I am not drawing any line here, I have clearly mentioned that this is what I feel, how both the technologies should be used out of the box without involving too much of customization that is difficult to maintain over multiple projects and over lifecycles of project, employee and technology itself. Being at the level I am, I can understand underlying architecture of Unity and MEF and I know how to control them, but various programmers, people from various technologies are involved in project life cycle, I do not want to teach everyone how to customize MEF or Unity to take each other&#039;s place, rather I want them to use the best of both worlds and give me a faster turnaround.</description>
		<content:encoded><![CDATA[<p>Well I am not biased towards Unity, I am saying what Unity is good for and what MEF is good for. I understand customization of MEF and Unity both, both can be customized to take each other&#8217;s place, but can we count man hours involved in it and what benefit do we get. Also I am not drawing any line here, I have clearly mentioned that this is what I feel, how both the technologies should be used out of the box without involving too much of customization that is difficult to maintain over multiple projects and over lifecycles of project, employee and technology itself. Being at the level I am, I can understand underlying architecture of Unity and MEF and I know how to control them, but various programmers, people from various technologies are involved in project life cycle, I do not want to teach everyone how to customize MEF or Unity to take each other&#8217;s place, rather I want them to use the best of both worlds and give me a faster turnaround.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

