<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Jiří {x2} Činčura</title>
	
	<link>http://blog.cincura.net</link>
	<description>Taking something that can't be done, and then doing it.</description>
	<lastBuildDate>Sat, 31 Jul 2010 17:45:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/blog_cincura_net" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="blog_cincura_net" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Array of WaitHandles (ManualResetEvent, AutoResetEvent, …) when waiting for operations to complete …</title>
		<link>http://blog.cincura.net/231837-array-of-waithandles-manualresetevent-autoresetevent-when-waiting-for-operations-to-complete/</link>
		<comments>http://blog.cincura.net/231837-array-of-waithandles-manualresetevent-autoresetevent-when-waiting-for-operations-to-complete/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 16:03:30 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Best practice or not?]]></category>
		<category><![CDATA[Multithreading]]></category>
		<category><![CDATA[Paralelism]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231837</guid>
		
			<content:encoded><![CDATA[Often, when you discover the beauty of multithreading and parallelism, you find a need to run some operations in parallel and wait for completion. Fairly common scenario. Although now, with .NET Framework 4, you can write it using Task Parallel Library&#8216;s Parallel.Invoke, there are scenarios when you need to plug it in into some other [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231837-array-of-waithandles-manualresetevent-autoresetevent-when-waiting-for-operations-to-complete/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ultimate EFv4 CTP4 Code First (full mapping) example (using Firebird)</title>
		<link>http://blog.cincura.net/231783-ultimate-efv4-ctp4-code-first-full-mapping-example-using-firebird/</link>
		<comments>http://blog.cincura.net/231783-ultimate-efv4-ctp4-code-first-full-mapping-example-using-firebird/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 18:25:28 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[Firebird]]></category>
		<category><![CDATA[MS SQL Server]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231783</guid>
		
			<content:encoded><![CDATA[There&#8217;s a lot of content for latest CTP, CTP4, for Entity Framework &#8220;new features&#8221;. It&#8217;s mainly focused on Code First stuff, that fills the triad with Database First and Model First. I like Code First but what I also like is maintainable code. Hence I was more trying not to use convention-over-configuration, in opinion good [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231783-ultimate-efv4-ctp4-code-first-full-mapping-example-using-firebird/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Useful Find method on DbSet</title>
		<link>http://blog.cincura.net/231816-useful-find-method-on-dbset/</link>
		<comments>http://blog.cincura.net/231816-useful-find-method-on-dbset/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 06:09:29 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Entity Framework]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231816</guid>
		
			<content:encoded><![CDATA[The ObjectStateManager contains a lot of information about entities currently in context. In fact it contains complete entities too. So you can try to look into it before issuing query and use it as . For some simple cases, like PK match, you can create extension method in no time. But in current feature pack [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231816-useful-find-method-on-dbset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handy ModelMatchesDatabase method</title>
		<link>http://blog.cincura.net/231779-handy-modelmatchesdatabase-method/</link>
		<comments>http://blog.cincura.net/231779-handy-modelmatchesdatabase-method/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 13:12:45 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Entity Framework]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231779</guid>
		
			<content:encoded><![CDATA[The Entity Framework 4 CTP4 is out and contains nice improvements. One is especially handy. Well you was able to do the same even in v1 but it was a lot of work. The method is ModelMatchesDatabase in System.Data.Entity.Infrastructure.Database. You can get Database object easily through DbContext.Database. The method return boolean value and checks whether [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231779-handy-modelmatchesdatabase-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solved Samsung i900 Omnia’s freezing</title>
		<link>http://blog.cincura.net/231774-solved-samsung-i900-omnias-freezing/</link>
		<comments>http://blog.cincura.net/231774-solved-samsung-i900-omnias-freezing/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 15:21:09 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[Windows Mobile (Windows phone)]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231774</guid>
		
			<content:encoded><![CDATA[I had problem with my Samsung i900 Omnia phone being stuck in stand by mode for no obvious reason, except I discovered applications doing this. I was living with that some time until I finally jumped into the problem. I was, from old ages, used to install almost all applications to storage card. Only some [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231774-solved-samsung-i900-omnias-freezing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is ORM just about bridging the gap or are we trying to wrongly match ER world into OO world?</title>
		<link>http://blog.cincura.net/231764-is-orm-just-about-bridging-the-gap-or-are-we-trying-to-wrongly-match-er-world-into-oo-world/</link>
		<comments>http://blog.cincura.net/231764-is-orm-just-about-bridging-the-gap-or-are-we-trying-to-wrongly-match-er-world-into-oo-world/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 03:49:08 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Databases in general]]></category>
		<category><![CDATA[Programming in general]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231764</guid>
		
			<content:encoded><![CDATA[Recently I&#8217;ve got to think about ER world and OO world. There&#8217;s a lot of people around there who understand ER or OO world very deeply. In fact ER world is well formalized, described and has a strong mathematical background. A lot of theoretical work is behind OO as well. But what about ORMs? Is [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231764-is-orm-just-about-bridging-the-gap-or-are-we-trying-to-wrongly-match-er-world-into-oo-world/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zooming images in Kindle books</title>
		<link>http://blog.cincura.net/231754-zooming-images-in-kindle-books/</link>
		<comments>http://blog.cincura.net/231754-zooming-images-in-kindle-books/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 08:31:44 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Amazon Kindle]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231754</guid>
		
			<content:encoded><![CDATA[Recently I was reading book with images at the end and I more or less accidentally pressed the 5-way joystick and got cursor near the image. What a surprise (for me; it&#8217;s probably described in manual ): There&#8217;s a small magnifier icon and you can zoom in the image and see it full screen even [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231754-zooming-images-in-kindle-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kindle and international web browsing</title>
		<link>http://blog.cincura.net/231748-kindle-and-international-web-browsing/</link>
		<comments>http://blog.cincura.net/231748-kindle-and-international-web-browsing/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 08:51:52 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Amazon Kindle]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231748</guid>
		
			<content:encoded><![CDATA[Maybe it&#8217;s related to , but today I noticed, that my Kindle no longer limits access to web only to selected sites (wikipedia, amazon, &#8230;). I&#8217;m able to access any page I want (here in Czech Republic). ID3 renamer&#8216;s site works, this blog as well (though it takes some time to render the page). I [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231748-kindle-and-international-web-browsing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firebird Embedded in comparison to SQL Server Compact Edition 4</title>
		<link>http://blog.cincura.net/231742-firebird-embedded-in-comparison-to-sql-server-compact-edition-4/</link>
		<comments>http://blog.cincura.net/231742-firebird-embedded-in-comparison-to-sql-server-compact-edition-4/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 15:00:11 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Databases in general]]></category>
		<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[Entity SQL]]></category>
		<category><![CDATA[Firebird]]></category>
		<category><![CDATA[LINQ]]></category>
		<category><![CDATA[MS SQL Server Compact Edition]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231742</guid>
		
			<content:encoded><![CDATA[Scott Guthrie recently posted article about New Embedded Database Support with ASP.NET. This made me think about other options, Firebird in particular, and advantages and disadvantages. What I&#8217;m going to do is to very shortly introduce Firebird Embedded here and then compare it with features Scott wrote in his article. Firebird Embedded, shortly, is Firebird [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231742-firebird-embedded-in-comparison-to-sql-server-compact-edition-4/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Prepend method in LINQ</title>
		<link>http://blog.cincura.net/231737-prepend-method-in-linq/</link>
		<comments>http://blog.cincura.net/231737-prepend-method-in-linq/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 07:07:29 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231737</guid>
		
			<content:encoded><![CDATA[Yesterday I needed to put one element at beginning of the collection I already had. Some kind of Concat upside down. As you can use the Concat method, it looks weird when you see the code, because two items are actually swapped. So I created a simple extension method to do it for me. I [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231737-prepend-method-in-linq/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Shortly with iPad</title>
		<link>http://blog.cincura.net/231727-shortly-with-ipad/</link>
		<comments>http://blog.cincura.net/231727-shortly-with-ipad/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 17:48:31 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Amazon Kindle]]></category>
		<category><![CDATA[Apple iPhone/iPad/iPod]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231727</guid>
		
			<content:encoded><![CDATA[Some time ago I . Information about iPad was based from different sources around internet. As my friend Petr Kaleta (Mac obsessed ) recently bought one and I was able to play with it for a short I would like to share some of my initial feelings. I was first surprised with the size. It&#8217;s [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231727-shortly-with-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Kindle firmware (2.5) – reflections</title>
		<link>http://blog.cincura.net/231706-new-kindle-firmware-2-5-reflections/</link>
		<comments>http://blog.cincura.net/231706-new-kindle-firmware-2-5-reflections/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 19:23:45 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Amazon Kindle]]></category>
		<category><![CDATA[Social Networks]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231706</guid>
		
			<content:encoded><![CDATA[Amazon released new firmware (2.5) for Kindle couple of days ago. And I have to say, there were some features I was quite looking forward. Namely the collections, PDF zoom and lately also the social networks integration. The rest wasn&#8217;t so much interesting for me. Let me go through these three and put out some [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231706-new-kindle-firmware-2-5-reflections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to break your code easily a.k.a my params hell</title>
		<link>http://blog.cincura.net/231701-how-to-break-your-code-easily-a-k-a-my-params-hell/</link>
		<comments>http://blog.cincura.net/231701-how-to-break-your-code-easily-a-k-a-my-params-hell/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 12:41:55 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231701</guid>
		
			<content:encoded><![CDATA[Today I faced a behavior I have no idea exists. It&#8217;s more or less ambiguity between method with some parameters and one using params. Why more or less? Well, because it surely described in C# specification (&#8220;best match&#8221; or something similar to it). But I hadn&#8217;t know I should think about it until I was [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231701-how-to-break-your-code-easily-a-k-a-my-params-hell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running the other method on same thread as the first one</title>
		<link>http://blog.cincura.net/231393-running-the-other-method-on-same-thread-as-the-first-one/</link>
		<comments>http://blog.cincura.net/231393-running-the-other-method-on-same-thread-as-the-first-one/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 21:31:56 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Multithreading]]></category>
		<category><![CDATA[Paralelism]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231393</guid>
		
			<content:encoded><![CDATA[Last week I was solving problem. The piece of code another code was plugged in was doing some crazy threading stuff inside while the code plugged in used some component that needed some methods (in my case just two) to be called in same thread. Well, that is to make the long story short. As [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231393-running-the-other-method-on-same-thread-as-the-first-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firebird and Entity Framework 4 – stage completed</title>
		<link>http://blog.cincura.net/231382-firebird-and-entity-framework-4-stage-completed/</link>
		<comments>http://blog.cincura.net/231382-firebird-and-entity-framework-4-stage-completed/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:12:53 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[Entity SQL]]></category>
		<category><![CDATA[Firebird]]></category>
		<category><![CDATA[LINQ]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231382</guid>
		
			<content:encoded><![CDATA[The ADO.NET provider for Firebird now fully supports all the new features in Entity Framework 4. Simple. If you&#8217;re eager to test it, grab the weekly build and enjoy. We support the internal improvements as well as the visible changes like i.e. Model First or CreateDatabaseScript method. The template for creating SQL script is now [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231382-firebird-and-entity-framework-4-stage-completed/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>VMWare Workstation 7.1 solves the Visual Studio rendering problem</title>
		<link>http://blog.cincura.net/231376-vmware-workstation-7-1-solves-the-visual-studio-rendering-problem/</link>
		<comments>http://blog.cincura.net/231376-vmware-workstation-7-1-solves-the-visual-studio-rendering-problem/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 13:52:02 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Windows Presentation Foundation (WPF)]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231376</guid>
		
			<content:encoded><![CDATA[The VMWare Workstation . But since version 7.1 this is no longer true. Recently I updated my virtual machine (VMWare Workstation 7.1 + new VMWare Tools + turning graphic acceleration on) with Visual Studio 2010 and the rendering is correct. Finally I&#8217;ll enjoy the graphic card accelerated machine and lighten up CPU.]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231376-vmware-workstation-7-1-solves-the-visual-studio-rendering-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>T4 templates processing at runtime</title>
		<link>http://blog.cincura.net/231360-t4-templates-processing-at-runtime/</link>
		<comments>http://blog.cincura.net/231360-t4-templates-processing-at-runtime/#comments</comments>
		<pubDate>Sat, 15 May 2010 18:22:02 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[T4 templates]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231360</guid>
		
			<content:encoded><![CDATA[The T4 templates are great tool for use. You can generate literally anything with it with comfort of using any .NET code you have available. Code generation (i.e. POCO classes in EFv4), web service proxies, simple DALs, …, all easily available. But what if your scenario is one step further? You don&#8217;t want to use [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231360-t4-templates-processing-at-runtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entity Framework 4 and bulk actions</title>
		<link>http://blog.cincura.net/231356-entity-framework-4-and-bulk-actions/</link>
		<comments>http://blog.cincura.net/231356-entity-framework-4-and-bulk-actions/#comments</comments>
		<pubDate>Wed, 12 May 2010 11:26:44 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[Entity SQL]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231356</guid>
		
			<content:encoded><![CDATA[Though Entity Framework 4 doesn&#8217;t support bulk action, you can do it. As Matthieu Mezil shows, it&#8217;s possible. Nice piece of code, Matthieu. If you don&#8217;t wanna play with it and go straight, you can create a stored procedure for action you need to call it. That&#8217;s how I&#8217;m doing it. Maybe in next version [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231356-entity-framework-4-and-bulk-actions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CUD stored procedures “improvements” in Entity Framework 4</title>
		<link>http://blog.cincura.net/231354-cud-stored-procedures-improvements-in-entity-framework-4/</link>
		<comments>http://blog.cincura.net/231354-cud-stored-procedures-improvements-in-entity-framework-4/#comments</comments>
		<pubDate>Sat, 08 May 2010 15:55:51 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[Databases in general]]></category>
		<category><![CDATA[Entity Framework]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231354</guid>
		
			<content:encoded><![CDATA[The EDM designer in Entity Framework 4 has a &#8220;nice&#8221; new feature. You, know in EFv1 you was forced to map all three CUD procedures or nothing. If you didn&#8217;t do that, the validation feature told you. If you do the same in EFv4 the validation succeeds. Great, you may think. Finally I can use [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231354-cud-stored-procedures-improvements-in-entity-framework-4/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Entity Framework v4 and Firebird – moving forward</title>
		<link>http://blog.cincura.net/231349-entity-framework-v4-and-firebird-moving-forward/</link>
		<comments>http://blog.cincura.net/231349-entity-framework-v4-and-firebird-moving-forward/#comments</comments>
		<pubDate>Tue, 04 May 2010 20:35:43 +0000</pubDate>
		<dc:creator>cincura.net</dc:creator>
				<category><![CDATA[.*]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[Entity SQL]]></category>
		<category><![CDATA[Firebird]]></category>
		<category><![CDATA[LINQ]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://blog.cincura.net/?p=231349</guid>
		
			<content:encoded><![CDATA[As it may look like nothing is going on, it’s not true. Next to Firebird 2.5 new protocol features, I’m also working on Entity Framework v4 support. Before I go further, be sure, that all providers written for Entity Framework v1 are also working with v4. In fact right now all the major improvements in [...]]]></content:encoded>
			<wfw:commentRss>http://blog.cincura.net/231349-entity-framework-v4-and-firebird-moving-forward/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
