<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Generated primary key in Entity Framework model from Firebird</title>
	<atom:link href="http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/</link>
	<description>Taking something that can&#039;t be done, and then doing it.</description>
	<lastBuildDate>Wed, 08 Feb 2012 15:02:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: cincura.net</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-6685</link>
		<dc:creator>cincura.net</dc:creator>
		<pubDate>Tue, 29 Nov 2011 15:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-6685</guid>
		<description>No the information about PK being generated (i.e. in trigger) isn&#039;t available.</description>
		<content:encoded><![CDATA[<p>No the information about PK being generated (i.e. in trigger) isn&#8217;t available.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Eubanks</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-6684</link>
		<dc:creator>Michael Eubanks</dc:creator>
		<pubDate>Tue, 29 Nov 2011 15:38:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-6684</guid>
		<description>I am not sure I understand the need for #PK_GEN# if you know what the primary key is. I assume that this information is available in the schema. Please forgive me if I am missing something obvious, I am still new to this. Thanks.</description>
		<content:encoded><![CDATA[<p>I am not sure I understand the need for #PK_GEN# if you know what the primary key is. I assume that this information is available in the schema. Please forgive me if I am missing something obvious, I am still new to this. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cincura.net</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-6670</link>
		<dc:creator>cincura.net</dc:creator>
		<pubDate>Sun, 27 Nov 2011 06:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-6670</guid>
		<description>Which is exactly what the provider is doing.</description>
		<content:encoded><![CDATA[<p>Which is exactly what the provider is doing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Eubanks</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-6663</link>
		<dc:creator>Michael Eubanks</dc:creator>
		<pubDate>Fri, 25 Nov 2011 22:56:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-6663</guid>
		<description>If the server version supports the insert ... returning feature (which you could test for) you could easily retrieve the value of the primary key (if present) and therefore repopulate the entity with all the actual record values, including the ones updated by triggers/generators.</description>
		<content:encoded><![CDATA[<p>If the server version supports the insert &#8230; returning feature (which you could test for) you could easily retrieve the value of the primary key (if present) and therefore repopulate the entity with all the actual record values, including the ones updated by triggers/generators.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Burton</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-3436</link>
		<dc:creator>Burton</dc:creator>
		<pubDate>Thu, 15 Jul 2010 17:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-3436</guid>
		<description>Cesar,
Try deleting the entity from the model and then update the model from the database.  That&#039;s what I had to do.</description>
		<content:encoded><![CDATA[<p>Cesar,<br />
Try deleting the entity from the model and then update the model from the database.  That&#8217;s what I had to do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cincura.net</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-2861</link>
		<dc:creator>cincura.net</dc:creator>
		<pubDate>Mon, 07 Jun 2010 11:59:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-2861</guid>
		<description>Hard to guess without further investigation.</description>
		<content:encoded><![CDATA[<p>Hard to guess without further investigation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cesar</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-2860</link>
		<dc:creator>Cesar</dc:creator>
		<pubDate>Mon, 07 Jun 2010 11:08:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-2860</guid>
		<description>Thanks for your answer... I guessed I had to specify PK views manually.

By the way. I tried the ‘#PK_GEN#’ workaround and it didn&#039;t work. The storegeneratedpattern attribute is still missing every time I update the model. 

Does it have to be something like this, doesn&#039;t it?

COMMENT ON COLUMN INVOICE.ID IS 
&#039;#PK_GEN#&#039;;

Am i doing anything wrong?</description>
		<content:encoded><![CDATA[<p>Thanks for your answer&#8230; I guessed I had to specify PK views manually.</p>
<p>By the way. I tried the ‘#PK_GEN#’ workaround and it didn&#8217;t work. The storegeneratedpattern attribute is still missing every time I update the model. </p>
<p>Does it have to be something like this, doesn&#8217;t it?</p>
<p>COMMENT ON COLUMN INVOICE.ID IS<br />
&#8216;#PK_GEN#&#8217;;</p>
<p>Am i doing anything wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cincura.net</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-2839</link>
		<dc:creator>cincura.net</dc:creator>
		<pubDate>Fri, 04 Jun 2010 10:10:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-2839</guid>
		<description>No. Views don&#039;t have any PK by definition. You have to specify it yourself.</description>
		<content:encoded><![CDATA[<p>No. Views don&#8217;t have any PK by definition. You have to specify it yourself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cesar</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-2838</link>
		<dc:creator>Cesar</dc:creator>
		<pubDate>Fri, 04 Jun 2010 10:09:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-2838</guid>
		<description>I wonder if there&#039;s any similar workaround to solve the problem of firebird views not being mapped correctly into the edmx model. The edmx designer is unable to infer a primary key of the views of my firebird data base. Any Ideas?
thanks in advance</description>
		<content:encoded><![CDATA[<p>I wonder if there&#8217;s any similar workaround to solve the problem of firebird views not being mapped correctly into the edmx model. The edmx designer is unable to infer a primary key of the views of my firebird data base. Any Ideas?<br />
thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cincura.net</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-2041</link>
		<dc:creator>cincura.net</dc:creator>
		<pubDate>Thu, 08 Oct 2009 11:37:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-2041</guid>
		<description>Jde to zapsat do komentare i primo do system table, ale jinak prikazem:
comment on column table.column is &#039;#PK_GEN#&#039;</description>
		<content:encoded><![CDATA[<p>Jde to zapsat do komentare i primo do system table, ale jinak prikazem:<br />
comment on column table.column is &#8216;#PK_GEN#&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miroslav Hrázský</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-2040</link>
		<dc:creator>Miroslav Hrázský</dc:creator>
		<pubDate>Thu, 08 Oct 2009 11:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-2040</guid>
		<description>Zdravim

asi som trochu natvrdly ale vobec netusi co sa presne mysli pod tymto
&quot;...put into comment of column...&quot;  Pokusal som sa to dat do
RDB$DESCRIPTION v tbl RDB$RELATION_FIELDS ale asi to nebude ono. Mozes
mi pls poradit? Vdaka.</description>
		<content:encoded><![CDATA[<p>Zdravim</p>
<p>asi som trochu natvrdly ale vobec netusi co sa presne mysli pod tymto<br />
&#8220;&#8230;put into comment of column&#8230;&#8221;  Pokusal som sa to dat do<br />
RDB$DESCRIPTION v tbl RDB$RELATION_FIELDS ale asi to nebude ono. Mozes<br />
mi pls poradit? Vdaka.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Firebird News &#187; Generated primary key in Entity Framework model from Firebird</title>
		<link>http://blog.cincura.net/230841-generated-primary-key-in-entity-framework-model-from-firebird/#comment-2026</link>
		<dc:creator>Firebird News &#187; Generated primary key in Entity Framework model from Firebird</dc:creator>
		<pubDate>Sat, 03 Oct 2009 15:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cincura.net/?p=230841#comment-2026</guid>
		<description>[...] you put into comment of column #PK_GEN#, then FirebirdClient will &#8230; read more.   (No Ratings Yet) &#160;Loading ... Permalink Leave your comment [...]</description>
		<content:encoded><![CDATA[<p>[...] you put into comment of column #PK_GEN#, then FirebirdClient will &#8230; read more.   (No Ratings Yet) &nbsp;Loading &#8230; Permalink Leave your comment [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

