I\'m using ASP.NET 4, EF 4 and FILESTREAM in SQL 2008 to add/read files to the DB. I\'m able to upload files just fine, but I\'m not able to retrieve the files the way I want to. Here\'s what I\'m doi
I have a code-first, POCO project in which I am trying to adjust an existing database so that it syncs up with what EF is expecting, given my existing model.
I am new to both MVC as well as Entity Framework, but I want to do my next project using those technologies.I went through the NerdDinner tutorial at http://nerddinnerbook.s3.amazonaws.com/Part1.htm.N
I heard that this issue is fixed in SQL Server Compact Edition 4.0 CTP As recently 开发者_JAVA百科I just stepped into SQL Server CE and Entity Framework, and VS2010 not yet supporting SQL Server CE 4
I want to load an entity and it\'s children conditionally开发者_JAVA百科 (I only want to eager load the children when the child.IsActive == true). How do I perform the following?
I have a simple database with 2 main tables with a many to many relationship through a 3rd bridge/join table.
I am running into an issue where RIA Services returns 3 entities from the server (I have verified while debugging on the server process, and have v开发者_运维知识库erified via Fiddler that the service
I am refactoring an MVC project to make it testable. Currently the Controller uses the Entity Framework\'s context objects directly to ask for the required data. I started abstract this and it just do
I\'m currently in a situation where I need to delete entities without having access to the associated ObjectContext. I read about identifying relationships and they seem to be exactly what I need: I w
In Nerd Dinner\'s Entity Framework repository, the queries\' return type corresponds to the model and not to the EF conceptual entity.