<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>efcontrib Work Item Rss Feed</title><link>http://www.codeplex.com/efcontrib/WorkItem/List.aspx</link><description>efcontrib Work Item Rss Description</description><item><title>Created Issue: SQL Script generation with Default Values not working [15479]</title><link>http://efcontrib.codeplex.com/workitem/15479</link><description>Hello,&lt;br /&gt;&lt;br /&gt;I am using the EF5 RC and VS 2012 and when I am creating a Database out of an Model the SQL Script does not have any Default Values set. &lt;br /&gt;&lt;br /&gt;But I&amp;#39;ve set some default Values in the edmx Model for some Members like Int type and string type.&lt;br /&gt;But the SQL Script looks like&amp;#58;&lt;br /&gt;&lt;br /&gt;-- Creating table &amp;#39;PersonSatz&amp;#39;&lt;br /&gt;CREATE TABLE &amp;#91;dbo&amp;#93;.&amp;#91;PersonSatz&amp;#93; &amp;#40;&lt;br /&gt;    &amp;#91;ID&amp;#93; int IDENTITY&amp;#40;1,1&amp;#41; NOT NULL,&lt;br /&gt;    &amp;#91;Vorname&amp;#93; nvarchar&amp;#40;max&amp;#41;  NOT NULL,&lt;br /&gt;    &amp;#91;Nachname&amp;#93; nvarchar&amp;#40;max&amp;#41;  NOT NULL,&lt;br /&gt;    &amp;#91;Typ&amp;#93; int  NOT NULL,&lt;br /&gt;    &amp;#91;Alter&amp;#93; int  NOT NULL,&lt;br /&gt;    &amp;#91;Spitzname&amp;#93; nvarchar&amp;#40;max&amp;#41;  NULL&lt;br /&gt;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;there where no default values set.&lt;br /&gt;&lt;br /&gt;thx much squadwuschel&lt;br /&gt;</description><author>squadwuschel</author><pubDate>Thu, 09 Aug 2012 08:25:06 GMT</pubDate><guid isPermaLink="false">Created Issue: SQL Script generation with Default Values not working [15479] 20120809082506A</guid></item><item><title>Commented Issue: PB trying to make it wotk with VS2008 SP1</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=6407</link><description>Hello,&lt;br /&gt;I manage to build the project with VS2008 SP1 &amp;#40;after correcting some API change issues&amp;#41;&lt;br /&gt;I&amp;#39;m trying to run SchoolDemo and I noticed that edmx designer&amp;#58;cs file are in mode build action &amp;#61; false. Surprising but I think it is normal...&lt;br /&gt;Now, when I try to invoke GetPerson Method I get the following NotSupportedException &amp;#58;&lt;br /&gt;&lt;br /&gt;The specified type member &amp;#39;PersonID&amp;#39; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            using &amp;#40;SchoolContext context &amp;#61; new SchoolContext&amp;#40;&amp;#41;&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                Person p &amp;#61; &amp;#40;from person in context.Person                                                 &amp;#60;&amp;#60;------ NotSupportedException &lt;br /&gt;                            where person.PersonID  &amp;#61;&amp;#61; id&lt;br /&gt;                               select person&amp;#41;.First&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                if &amp;#40;fetchEnrollments&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;p&amp;#41;.Load&amp;#40;&amp;#34;Enrollments&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                    foreach &amp;#40;Enrollment r in p.Enrollments&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;r&amp;#41;.Load&amp;#40;&amp;#34;Course&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                        &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;r&amp;#41;.Load&amp;#40;&amp;#34;Person&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;                &amp;#125;&lt;br /&gt;.....&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Any idea &amp;#63;&lt;br /&gt;Thanks a lot for helping...&lt;br /&gt;Comments: ** Comment from web user: farooqmian ** &lt;p&gt;I have faced the very same issues and seems like this project is dead.&lt;/p&gt;</description><author>farooqmian</author><pubDate>Thu, 04 Dec 2008 06:09:39 GMT</pubDate><guid isPermaLink="false">Commented Issue: PB trying to make it wotk with VS2008 SP1 20081204060939A</guid></item><item><title>Created Issue: ObjectContext.CreateQuery&lt;DateTime&gt;("GetDate()"); // no longer working.... PLEASE HELP!</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=6548</link><description>Hi, something that was working is no longer working with VS 2008 SP1 &amp;#63;&lt;br /&gt;&lt;br /&gt;This method gets the SQL Server date from the server.&lt;br /&gt;public DateTime GetDate&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            &amp;#47;&amp;#47; You got to be kidding me&amp;#33;&amp;#33; &lt;br /&gt;            var q &amp;#61; this.CreateQuery&amp;#60;DateTime&amp;#62;&amp;#40;&amp;#34;GetDate&amp;#40;&amp;#41;&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;            return q.ToArray&amp;#60;DateTime&amp;#62;&amp;#40;&amp;#41;&amp;#91;0&amp;#93;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;Error&amp;#58; &amp;#39;GetDate&amp;#39; cannot be resolved into a valid type constructor or function., near function, method or type constructor, line 1, column 8.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;a. anyone know why this is not working or not support any longer &lt;br /&gt;b. what is the best approach to call t-sql from EDM &amp;#63;  eg. GetDate&amp;#40;&amp;#41;  Please post the actual code - no one seems to know how to do something really basic like this.  &lt;br /&gt;&lt;br /&gt;My example was working fine &amp;#33;  Calling a function or proc does not seem to help&amp;#33;  Please help&amp;#33;&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;Marty&lt;br /&gt;&lt;br /&gt;I spent hours on this....&lt;br /&gt;</description><author>MSpallone</author><pubDate>Tue, 04 Nov 2008 22:58:38 GMT</pubDate><guid isPermaLink="false">Created Issue: ObjectContext.CreateQuery&lt;DateTime&gt;("GetDate()"); // no longer working.... PLEASE HELP! 20081104105838P</guid></item><item><title>Commented Issue: PB trying to make it wotk with VS2008 SP1</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=6407</link><description>Hello,&lt;br /&gt;I manage to build the project with VS2008 SP1 &amp;#40;after correcting some API change issues&amp;#41;&lt;br /&gt;I&amp;#39;m trying to run SchoolDemo and I noticed that edmx designer&amp;#58;cs file are in mode build action &amp;#61; false. Surprising but I think it is normal...&lt;br /&gt;Now, when I try to invoke GetPerson Method I get the following NotSupportedException &amp;#58;&lt;br /&gt;&lt;br /&gt;The specified type member &amp;#39;PersonID&amp;#39; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            using &amp;#40;SchoolContext context &amp;#61; new SchoolContext&amp;#40;&amp;#41;&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                Person p &amp;#61; &amp;#40;from person in context.Person                                                 &amp;#60;&amp;#60;------ NotSupportedException &lt;br /&gt;                            where person.PersonID  &amp;#61;&amp;#61; id&lt;br /&gt;                               select person&amp;#41;.First&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                if &amp;#40;fetchEnrollments&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;p&amp;#41;.Load&amp;#40;&amp;#34;Enrollments&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                    foreach &amp;#40;Enrollment r in p.Enrollments&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;r&amp;#41;.Load&amp;#40;&amp;#34;Course&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                        &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;r&amp;#41;.Load&amp;#40;&amp;#34;Person&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;                &amp;#125;&lt;br /&gt;.....&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Any idea &amp;#63;&lt;br /&gt;Thanks a lot for helping...&lt;br /&gt;Comments: ** Comment from web user: gherold ** &lt;p&gt;Solution FOUND &amp;#33;&lt;/p&gt;&lt;p&gt;Replace &amp;#58; context.GetEntityKey&amp;#40;fullEntitySetName, target&amp;#41;&lt;/p&gt;&lt;p&gt;By&lt;/p&gt;&lt;p&gt;EntityKey targetKey&amp;#59;&lt;br /&gt;EntityObject e &amp;#61; target as EntityObject&amp;#59;&lt;br /&gt;if &amp;#40;e &amp;#33;&amp;#61; null &amp;#38;&amp;#38; e.EntityKey &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;targetKey &amp;#61; e.EntityKey&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;else&lt;br /&gt;&amp;#123;&lt;br /&gt;targetKey &amp;#61; context.CreateEntityKey&amp;#40;fullEntitySetName, target&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;/p&gt;&lt;p&gt;Now it works on VS2008 SP1&lt;/p&gt;</description><author>gherold</author><pubDate>Fri, 10 Oct 2008 13:23:30 GMT</pubDate><guid isPermaLink="false">Commented Issue: PB trying to make it wotk with VS2008 SP1 20081010012330P</guid></item><item><title>Commented Issue: PB trying to make it wotk with VS2008 SP1</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=6407</link><description>Hello,&lt;br /&gt;I manage to build the project with VS2008 SP1 &amp;#40;after correcting some API change issues&amp;#41;&lt;br /&gt;I&amp;#39;m trying to run SchoolDemo and I noticed that edmx designer&amp;#58;cs file are in mode build action &amp;#61; false. Surprising but I think it is normal...&lt;br /&gt;Now, when I try to invoke GetPerson Method I get the following NotSupportedException &amp;#58;&lt;br /&gt;&lt;br /&gt;The specified type member &amp;#39;PersonID&amp;#39; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            using &amp;#40;SchoolContext context &amp;#61; new SchoolContext&amp;#40;&amp;#41;&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                Person p &amp;#61; &amp;#40;from person in context.Person                                                 &amp;#60;&amp;#60;------ NotSupportedException &lt;br /&gt;                            where person.PersonID  &amp;#61;&amp;#61; id&lt;br /&gt;                               select person&amp;#41;.First&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                if &amp;#40;fetchEnrollments&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;p&amp;#41;.Load&amp;#40;&amp;#34;Enrollments&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                    foreach &amp;#40;Enrollment r in p.Enrollments&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;r&amp;#41;.Load&amp;#40;&amp;#34;Course&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                        &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;r&amp;#41;.Load&amp;#40;&amp;#34;Person&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;                &amp;#125;&lt;br /&gt;.....&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Any idea &amp;#63;&lt;br /&gt;Thanks a lot for helping...&lt;br /&gt;Comments: ** Comment from web user: gherold ** &lt;p&gt;Okay, I manage to find what was going wrong.&lt;br /&gt;Now, I can read get data on the client. But if I try to persist, I get the error &amp;#34;The supplied EntityKey does not have a corresponding entry in the ObjectStateManager&amp;#34;.&lt;br /&gt;I try also with the EntityBag&amp;#60;T&amp;#62; framework and I have the same error.&lt;br /&gt;Maybe it&amp;#39;s due to the EF API change between &amp;#58; &lt;br /&gt;      context.GetEntityKey dorsn&amp;#39;t exists anymore that I replaced with context.CreateEntityKey&lt;br /&gt;I did this change in both framework &amp;#61;&amp;#62; same error,&lt;br /&gt;Any idea someone &amp;#63;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>gherold</author><pubDate>Fri, 10 Oct 2008 12:56:19 GMT</pubDate><guid isPermaLink="false">Commented Issue: PB trying to make it wotk with VS2008 SP1 20081010125619P</guid></item><item><title>Created Issue: PB trying to make it wotk with VS2008 SP1</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=6407</link><description>Hello,&lt;br /&gt;I manage to build the project with VS2008 SP1 &amp;#40;after correcting some API change issues&amp;#41;&lt;br /&gt;I&amp;#39;m trying to run SchoolDemo and I noticed that edmx designer&amp;#58;cs file are in mode build action &amp;#61; false. Surprising but I think it is normal...&lt;br /&gt;Now, when I try to invoke GetPerson Method I get the following NotSupportedException &amp;#58;&lt;br /&gt;&lt;br /&gt;The specified type member &amp;#39;PersonID&amp;#39; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            using &amp;#40;SchoolContext context &amp;#61; new SchoolContext&amp;#40;&amp;#41;&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                Person p &amp;#61; &amp;#40;from person in context.Person                                                 &amp;#60;&amp;#60;------ NotSupportedException &lt;br /&gt;                            where person.PersonID  &amp;#61;&amp;#61; id&lt;br /&gt;                               select person&amp;#41;.First&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                if &amp;#40;fetchEnrollments&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;p&amp;#41;.Load&amp;#40;&amp;#34;Enrollments&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                    foreach &amp;#40;Enrollment r in p.Enrollments&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;r&amp;#41;.Load&amp;#40;&amp;#34;Course&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                        &amp;#40;&amp;#40;IRelationshipLoader&amp;#41;r&amp;#41;.Load&amp;#40;&amp;#34;Person&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;                &amp;#125;&lt;br /&gt;.....&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Any idea &amp;#63;&lt;br /&gt;Thanks a lot for helping...&lt;br /&gt;</description><author>gherold</author><pubDate>Thu, 09 Oct 2008 12:37:01 GMT</pubDate><guid isPermaLink="false">Created Issue: PB trying to make it wotk with VS2008 SP1 20081009123701P</guid></item><item><title>Created Issue: efcontrib is not compatible with VS2008 SP1 Beta</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=5302</link><description>Hi&lt;br /&gt;&lt;br /&gt;I just downloaded the latest postsharp4fe and tried to work with VS2008 SP1Beta things are not working.  Initally I had compilation errors for PostSharp4FE project I could fix the API that got changed in the recent SP1.  Now I could compile all the projects of PostSharp4FE and could generate the dlls.&lt;br /&gt;&lt;br /&gt;Now I created my own domain object class library project and setup the csproj and psproj files to use PostSharp4FE&amp;#58; The project build itself was failing.  I ran the PostSharp.exe command from command line and got the following exception&amp;#58;&lt;br /&gt;&lt;br /&gt;System.NullReferenceException&amp;#58; Object reference not set to an instance of an object.&lt;br /&gt;   at EntityFrameworkContrib.PostSharp4EF.PocoAttribute.GetMetaDataWorkspace&amp;#40;String assemblyLocation&amp;#41; in c&amp;#58;&amp;#92;Software&amp;#92;efcontrib&amp;#92;EFContrib.Pos&lt;br /&gt;tSharp4EF&amp;#92;EntityFrameworkContrib.PostSharp4EF.Public&amp;#92;PocoAttribute.cs&amp;#58;line 246&lt;br /&gt;   at EntityFrameworkContrib.PostSharp4EF.PocoAttribute.ProvideAspects&amp;#40;Object element, LaosReflectionAspectCollection collection&amp;#41; in c&amp;#58;&amp;#92;Soft&lt;br /&gt;ware&amp;#92;efcontrib&amp;#92;EFContrib.PostSharp4EF&amp;#92;EntityFrameworkContrib.PostSharp4EF.Public&amp;#92;PocoAttribute.cs&amp;#58;line 112&lt;br /&gt;   at PostSharp.Laos.CompoundAspect.PostSharp.Laos.ILaosReflectionAspectProvider.ProvideAspects&amp;#40;LaosReflectionAspectCollection collection&amp;#41; i&lt;br /&gt;n p&amp;#58;&amp;#92;branches&amp;#92;1.0&amp;#92;Laos&amp;#92;PostSharp.Laos&amp;#92;CompoundAspect.cs&amp;#58;line 62&lt;br /&gt;   at PostSharp.Laos.Weaver.LaosTask.EnqueueAspects&amp;#40;ILaosReflectionAspectProvider provider&amp;#41; in p&amp;#58;&amp;#92;branches&amp;#92;1.0&amp;#92;Laos&amp;#92;PostSharp.Laos.Weaver&amp;#92;La&lt;br /&gt;osTask.cs&amp;#58;line 196&lt;br /&gt;   at PostSharp.Laos.Weaver.LaosTask.Execute&amp;#40;&amp;#41; in p&amp;#58;&amp;#92;branches&amp;#92;1.0&amp;#92;Laos&amp;#92;PostSharp.Laos.Weaver&amp;#92;LaosTask.cs&amp;#58;line 411&lt;br /&gt;   at PostSharp.Extensibility.Project.ExecutePhase&amp;#40;String phase&amp;#41; in p&amp;#58;&amp;#92;branches&amp;#92;1.0&amp;#92;Core&amp;#92;PostSharp.Core&amp;#92;Extensibility&amp;#92;Project.cs&amp;#58;line 1044&lt;br /&gt;   at PostSharp.Extensibility.Project.Execute&amp;#40;&amp;#41; in p&amp;#58;&amp;#92;branches&amp;#92;1.0&amp;#92;Core&amp;#92;PostSharp.Core&amp;#92;Extensibility&amp;#92;Project.cs&amp;#58;line 1082&lt;br /&gt;   at PostSharp.Extensibility.PostSharpObject.ExecuteProjects&amp;#40;&amp;#41; in p&amp;#58;&amp;#92;branches&amp;#92;1.0&amp;#92;Core&amp;#92;PostSharp.Core&amp;#92;Extensibility&amp;#92;PostSharpObject.cs&amp;#58;line&lt;br /&gt; 581&lt;br /&gt;   at PostSharp.Extensibility.PostSharpObject.InvokeProjects&amp;#40;ProjectInvocation&amp;#91;&amp;#93; projectInvocations&amp;#41; in p&amp;#58;&amp;#92;branches&amp;#92;1.0&amp;#92;Core&amp;#92;PostSharp.Core&amp;#92;&lt;br /&gt;Extensibility&amp;#92;PostSharpObject.cs&amp;#58;line 564&lt;br /&gt;   at PostSharp.Console.Program.InternalMain&amp;#40;String&amp;#91;&amp;#93; args&amp;#41; in p&amp;#58;&amp;#92;branches&amp;#92;1.0&amp;#92;Core&amp;#92;PostSharp.Console&amp;#92;Program.cs&amp;#58;line 301&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Is there any plan for updating the code to work with SP1 Beta&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;-kesav&lt;br /&gt;</description><author>kesav</author><pubDate>Thu, 12 Jun 2008 21:15:57 GMT</pubDate><guid isPermaLink="false">Created Issue: efcontrib is not compatible with VS2008 SP1 Beta 20080612091557P</guid></item><item><title>REOPENED TASK: PostSharp4EF - Implement default value support for all value types</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=3765</link><description>&lt;br /&gt;</description><author>RBoeke</author><pubDate>Thu, 21 Feb 2008 14:52:27 GMT</pubDate><guid isPermaLink="false">REOPENED TASK: PostSharp4EF - Implement default value support for all value types 20080221025227P</guid></item><item><title>CLOSED TASK: PostSharp4EF - setup unittest for defaultvalues</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=3766</link><description>&lt;br /&gt;</description><author>RBoeke</author><pubDate>Thu, 21 Feb 2008 14:51:40 GMT</pubDate><guid isPermaLink="false">CLOSED TASK: PostSharp4EF - setup unittest for defaultvalues 20080221025140P</guid></item><item><title>CLOSED TASK: PostSharp4EF - Implement default value support for all value types</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=3765</link><description>&lt;br /&gt;</description><author>RBoeke</author><pubDate>Thu, 21 Feb 2008 14:51:25 GMT</pubDate><guid isPermaLink="false">CLOSED TASK: PostSharp4EF - Implement default value support for all value types 20080221025125P</guid></item><item><title>CREATED TASK: PostSharp4EF - setup unittest for defaultvalues</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=3766</link><description>&lt;br /&gt;</description><author>RBoeke</author><pubDate>Thu, 21 Feb 2008 14:50:19 GMT</pubDate><guid isPermaLink="false">CREATED TASK: PostSharp4EF - setup unittest for defaultvalues 20080221025019P</guid></item><item><title>CREATED TASK: PostSharp4EF - Implement default value support for all value types</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=3765</link><description>&lt;br /&gt;</description><author>RBoeke</author><pubDate>Thu, 21 Feb 2008 14:43:34 GMT</pubDate><guid isPermaLink="false">CREATED TASK: PostSharp4EF - Implement default value support for all value types 20080221024334P</guid></item><item><title>CREATED TASK: PostSharp4EF - Document default value field naming limitations</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=3764</link><description>&lt;br /&gt;</description><author>RBoeke</author><pubDate>Thu, 21 Feb 2008 14:43:02 GMT</pubDate><guid isPermaLink="false">CREATED TASK: PostSharp4EF - Document default value field naming limitations 20080221024302P</guid></item><item><title>CLOSED FEATURE: PostSharp4EF - Default values</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=3763</link><description>Implement default values.&lt;br /&gt;The EDM metadataworkspace contains possible default values for each property. These should be injected into the ctor at weaving time.&lt;br /&gt;</description><author>RBoeke</author><pubDate>Thu, 21 Feb 2008 14:42:31 GMT</pubDate><guid isPermaLink="false">CLOSED FEATURE: PostSharp4EF - Default values 20080221024231P</guid></item><item><title>CREATED FEATURE: PostSharp4EF</title><link>http://www.codeplex.com/efcontrib/WorkItem/View.aspx?WorkItemId=3763</link><description>Implement default values.&lt;br /&gt;The EDM metadataworkspace contains possible default values for each property. These should be injected into the ctor at weaving time.&lt;br /&gt;</description><author>RBoeke</author><pubDate>Thu, 21 Feb 2008 14:41:07 GMT</pubDate><guid isPermaLink="false">CREATED FEATURE: PostSharp4EF 20080221024107P</guid></item></channel></rss>