Topic profile page for Entity Framework.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Entity Framework.
Topic "Entity framework" was discussed 1,364 times on 177 sites in last 3 months
Started 6 days, 19 hours ago (2009-12-01 02:59:00)
by Thebighoser
I've spent 16 straight hours trying to figure this out, so any help would be greatly appreciated... I'm doing everything the same for each type of app., and in any console version I can access my ModelEntities (System.Data.Objects.ObjectContext) object's members, but can't in any ASP.NET app, for example: OrderEntities o = new OrderEntities(); at which point 'o' isn't recognized by ...
Started 1 week ago (2009-11-30 15:15:00)
by Cory Blissitte
I am doing the preliminary foray into Entity Framework in preparation for creating a custom license tracking tool with a thirdparty database. The database uses composite keys (is that the right term? Two keys used in conjunction to produce a unique record ID). I am having some difficulty in getting the Model to play nice with me. I have use EF a bit before with simpler homemade databases, ...
Started 1 week ago (2009-11-30 14:22:00)
by Jonathan Manley
This post is done using Visual Studio 2010 Beta 2 Not sure if I did this correct but this is how I did it; Maybe it can be of some use to some one else. I went through the steps outlined by many other websites on how to create a new WinForms Entity Framework project, add Object Data Sources and drag and drop DataGridView on to my WinForms. One Problem; Required Fields (not null) from ...
Started 1 week ago (2009-11-30 11:11:00)
by Domingo Fernandez
Hi, we'd like to develop .Net applications using Entity Framework Data Access Layer for Informix, that is (supposed) supported on IBM Data Server Provider for .Net. We have tried 9.5 and 9.7 versions, with no success. It's impossible to find a clear statement from IBM about EF support on Informix, supported configurations, etc. Any experiences of EF on informix? Regards,...
Started 1 week ago (2009-11-30 10:19:00)
by John Galt
Hi all, I'm dealing with a major issue that I cannot figure a work around without major issues. Here's the basic scenario: You've got an order that the person is working on, it has it's base information and then it can have one or more detail line items where the product is selected etc. Dealing with a single item is easy, you can either store it in the Viewstate (serialize it) or the ...
Started 1 week, 3 days ago (2009-11-27 21:10:00)
by BenRush
Greetings, I didn't see anything related to this in the forums (if I missed it, I apologize), so I figured I'd ask. I'm playing with the Entity Framework CTP 2 bits; more specifically I'm playing with the new POCO support which this release supports. Cool stuff. So far I've been able to successfully create a database / add objects, etc. using the bits: using ( var conn...
Started 1 week, 3 days ago (2009-11-27 20:01:00)
by Moutz
Hello, I just installed VS2010 Beta 2 and noticed that the EF templates are not included. After some Google searching I found out that there was a CTP2 that was just released this month (Nov '09). I found the installer here: http://www.microsoft.com/downloads/details.aspx?Fa milyID=13fdfce4-7f92-438f-8058-b5b4041d0f01&displa yLang=en#Requirements I installed it on my Win7 x64 Ultimate box and ...
Started 1 week, 3 days ago (2009-11-27 17:00:00)
by Ben Morris
I'd like to use the EF from within a managed stored procedure. From what I remember, System.Linq.dll can't be loaded into SQL Server 2005--has anything changed for 2008? (Which I'm using.) If so, which version of the EF is supported? -- 1 or 4?
Started 1 week, 3 days ago (2009-11-27 03:13:00)
by Royee
I think most of you may work with the latest version of SQL Server and deploy it to the target machine which have a relative old version on it. Like using SQL Server 2008 on production machine and SQL Server 2005 on target server. While working in such situation with Entity Framework, It made me a little bit frustrated. I designed the database schema using SQL Server 2008, have table field ...
Started 1 week, 4 days ago (2009-11-26 17:08:00)
by aloire
Hello, Context : I would like to get information from many servers and to gather them to a database to make statistics on it. Servers are indepndant and cannot access database directly. Idea : 2 steps - generate a xml file from each server - load these xml files into database Solution : 1/ design my database 2/ generate EF from it 3/ use this object model to create xml files 4/ use this ...
Started 1 week ago (2009-11-30 20:22:00)
by davrous
Hello, Entity Framework est ouvert à travers des providers, donc c'est plutôt lui qui pourra discuter avec Oracle. Il existe par exemple un provider mySQL pour Entity Framework : http://www.devart.com/dotconnect/mysql/ Pour WCF RIA Services, tu peux le découvrir à travers une série de tutoriaux sur mon blog: http://blogs.msdn.com/davrous/archiv...vices-1-4.a spx J'en parle ...
Started 4 days, 11 hours ago (2009-12-03 11:10:02)
by ClayP
I am having a similar issue, however, mine is disconnected and via a wcf call. Just wondering if you have made any progress? Part of my problem is that most examples I have seen seem to be without complex relationships.
Started 1 week, 1 day ago (2009-11-29 00:00:00)
by ddanbe
Use an if statement: Help with Code Tags c# Syntax ( Toggle Plain Text ) if ( em==! null ) { em. AddToCompanies ( c ) ; em. SaveChanges ( ) ; } if (em==!null) { em.AddToCompanies(c); em.SaveChanges(); }
Started 5 days, 19 hours ago (2009-12-02 03:06:00)
by Nai-dong Jin - MSFT
Hi, From your description, it seems that the issue has been reported to connect site, please check the replies from connect site by the following link. https://connect.microsoft.com/VisualStudio/feedbac k/ViewFeedback.aspx?FeedbackID=345018 Thanks.
Started 1 week, 1 day ago (2009-11-29 22:24:00)
by David DeWinter - MSFT
It is possible in SQL Server 2008 with EFv1 (the .NET 4 CLR is completely new and SQL Server 2008 will not host it). You will need to add System.Data.Entity.dll and its dependencies with the UNSAFE permission set in order for it to work.