The ADO.NET Entity Framework version 5, containing support for .net 4.5
0
votes
1answer
14 views
Returning multiple resultsets with dataentity framework 5
I am using ef5 and am trying to return multiple result sets with the method GetNextResult<>() however it doesn't seem to be working.
My sql sproc is:
select * from Questions
select * from Skills
...
3
votes
1answer
34 views
Readonly Fields or Properties
Is there a way to have either a read only Field or a Property with no setter map to a database column with Entity Framework Code First?
I found both are ignored, example:
using System;
namespace ...
1
vote
1answer
12 views
Entity Framework model is not displaying table with composite key
I've created an Entity Framework model from an existing database with no issues or warnings. I came across a table that did not generate in the code and does not appear in the model.
This table, and ...
1
vote
4answers
35 views
Using two models in one controller?
I currently have an application with a home page that shows a list of ten movies based on the date they were "created", or entered into the database. I would also like to show a list of the top ten ...
1
vote
2answers
55 views
Entity Framework Code First Common Database Audit Fields
I'm new to Entity Framework, in the past I've used Enterprise Library or ADO.NET directly to map models to database tables. One pattern that I've used is to put my common audit fields that appear in ...
0
votes
0answers
8 views
Migration issue Entity Framework 4.0 to Entity Framework 5.0
Our web application is a EF4.0 database-first application, which uses custom-code generator to generate service classes, data access classes and uses ObjectDataContext as a base class for data access. ...
0
votes
0answers
19 views
ASP.NET MVC 4, Code First, View to Create/Edit Object with Many to Many Relationship
I have the model (code first) & database (SQL Server) setup with many to many relationship & seeding fine:
A Place can have many tags (eg Restaurant, bar, cafe) - and tags can belong to many ...
1
vote
1answer
24 views
Breeze doesn't expand TPH entities correctly
Breeze doesn't expand TPH entities correctly.
When using expand in breeze if you are using TPH expand will only work for the first entity, the others properties will be null. If I change the entity ...
0
votes
0answers
14 views
EF5 code first - You cannot use Ignore method on the property
This question has been asked all over the place, but the SUPPOSED workaround on CodePlex does not work.
I'm hoping someone has some updated information.
I have an EF5 Code First project where I have ...
0
votes
0answers
11 views
sbyte[] column missing from database
I've defined my model as such:
class ImageSignature
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
[MaxLength(260)]
[Required]
public string FileName { get; set; }
...
0
votes
2answers
24 views
What does CTP stand for in Entity Framework?
I am seeing CTP in an awful lot of posts lately. What does CTP stand for ?
Thanks
0
votes
1answer
32 views
Entity Framework 5 Enum that is built from a db table
I have those two entities :
Color entity is mapped to a table of constant values that represent colors.
Code=1, Name="Red"
Code=2, Name="Blue"
And so on...
In Car entity, the Color property is ...
0
votes
0answers
30 views
Fields Not Created in Entitiy Framework Code First
I have a POCO classes that inherit from a Base class. I'm using the EF Power Tools to display the entity data model. What I'm noticing is that that only two of the five properties are displaying from ...
0
votes
1answer
12 views
Data binding directly to a store query (DbSet, DbQuery, DbSqlQuery) is not supported Entity Framework 5
I have a devexpress GridControl for which I am setting it's datasource like so:
var regs = (from vcap in context.chaps
select vcap);
gridControl1.DataSource = new ...
1
vote
1answer
27 views
Eager Loading in EF 5 fails with deep graph (using .include())
I am using code first with EF 5. Here is my test domain
public class Master
{
public int Id { get; set; }
public string Name { get; set; }
public virtual Query Query { get; set; }
}
...
0
votes
0answers
9 views
EF 5 ENUM with Navigation
I'm trying to use Enum support with EF 5 and dot.NET 4.5.
The situation I have is the following.
POCO:
public partial class tbl_pp_Message
{
public tbl_pp_Message()
{
...
0
votes
1answer
12 views
Map Many to Many relationship without navigation property
Is is possible to map a many to many relationship without having a navigation property on one of the ends? For example I have some widgets and some users who can star particular widgets. I'd like to ...
0
votes
1answer
4 views
Debugging Package Manager Console Update-Database Seed Method
I wanted to debug the Seed() method in my Entity Framework database configuration class when I run update-database from the Package Manager Console but didn't know how to do it. I wanted to share the ...
0
votes
0answers
20 views
Multiplicity constraint violated
I have two entites:
ClaimDetail (int ID, IList ClaimDetailStatus, other...)
ClaimDetailStatus (int ID, ClaimDetailClaimDetail, other...)
Configuration:
...
0
votes
1answer
76 views
Unit Of Work & Generic Repository with Entity Framework 5
I'm using ASP.NET MVC 4 with Entity Framework 5. I have model classes and Entity Maps to map existing tables to those model classes. All this is setup fine and works great.
Now I want to mock this. I ...
2
votes
0answers
12 views
Deleting child entities in Entity Framework w/ Repository Pattern
I have a child entity:
public class PhoneNumber : KeyedEntityBase
{
public string Number { get; set; }
public string Extension { get; set; }
}
that exists in multiple parents:
public ...
1
vote
0answers
32 views
Is this really the best way to update detached entities?
I have the following code:
Get contact
public Contact LoadContactFromId(int contactId)
{
using(var ctx = new ContactContext())
{
var contact = ...
1
vote
1answer
44 views
Entity Framework and Generics for bulk methods
I have migrated an application from Linq To Sql to Entity Framework.
We use this application to synchronize registries between two sql servers.
When we were using Link to sql, we could use some bulk ...
2
votes
2answers
30 views
Where is my database and how do I view it?
I've just created a brand new application, added EntityFramework 5 via NuGet, created a very basic DbContext and saved some data to it.
Where exactly is my data and how do I view it? The unmodified ...
0
votes
1answer
23 views
Is there a better way to get an older value after an EntityState.Modified in EF5?
I just want to know if it existe a better way to get the value in database after an EntityState.Modified. My syntaxe :
db.Entry(UserProfile).State = EntityState.Modified;
var olderPhoto = ...
1
vote
0answers
51 views
EF 5 foreign key names
I have an entity called User and another called AvailableConsumption.
There's an association of 0..1 to 1 between them and AvailableConsumption is supposed to have a User's FK called UserId (which ...
0
votes
2answers
15 views
EF 5, one to many, more than one table
I'm having a little of trouble with the following classes:
public class TwoVariableDetails
{
public TwoVariableDetails()
{
MovementsPerBlocks = new HashSet<MovementsRow>();
...
0
votes
1answer
20 views
Moving EF POCOs to separate project compilation errors
I have two separate projects, one that holds EF pocos and the MyDb.tt file that generates them. That project compiles fine.
The remaining project that holds the MyDb.edmx will not compile. It has ...
3
votes
1answer
49 views
Why is Entity Framework ignoring my connection string?
I have a connection string:
<add name="Gini" providerName="System.Data.SqlClient" connectionString="user id=user;Password=pa55;Data Source=server;Database=gini" />
I want EF to be able to ...
1
vote
1answer
35 views
Filtering navigation properties in EF Code First
I'm using Code First in EF. Let's say I have two entities:
public class Farm
{
....
public virtual ICollection<Fruit> Fruits {get; set;}
}
public class Fruit
{
...
}
My ...
0
votes
0answers
10 views
EF5: Model Defined Function throws exception on LINQ query execution
I have to deal with an old legacy database schema containing a varchar-column but only contains integer numbers (I cannot change the type of the column!). Now I need to execute a MAX-statement on that ...
0
votes
1answer
32 views
Delete multiple rows in Entity Framework
I am trying to delete multiple rows in EF5 and I'm using the following code sample
string TestId = "12,23";
Context.Database.ExecuteSqlCommand("DELETE FROM TEST WHERE TESTID IN (@Params)", new ...
0
votes
2answers
58 views
Bring back DbContext.Detach() method with an extension method (EF5) [duplicate]
There is no Detach(object entity) on the DbContext in Entity Framework 5.
To detach an entity, the state now needs to be changed. Maybe I am missing something, but this seems much less intuitive and ...
2
votes
0answers
57 views
In Entity Framework, which is faster Any() or FirstOrDefault()? [closed]
I'm a newbie in Entity Framework and SQL. I would like to know which one is (a little) faster: Any() or FirstOrDefault(). See below of how I want to use them.
Option 1
...
0
votes
0answers
9 views
Domain Encapsulation with EntityFramework 5.0
I'm trying to not expose my domain model as much as I can, so I'm trying properties with Private setters.
When I add a new property to an existing object, EF does not detect changes and won't even ...
0
votes
1answer
20 views
How do I make a self reference in Entity Framework Code First?
I have a device class, computer class and a virtualdesktop class. Every computer is a device and every virtualdesktop is a computer. I want to add a property to my virtualdesktop that references ...
1
vote
3answers
74 views
ASP.NET MVC 4, EF5, Unique property in model - best practice?
ASP.NET MVC 4, EF5, Code First, SQL Server 2012 Express
What is best practice to enforce a unique value in a model? I have a places class that has a 'url' property that should be unique for every ...
1
vote
1answer
49 views
Code First load nested without recursion
I have a Sheet that can contain many Sections. Each Section can also contain many Sections. I would like to load the Sheet, its Sections, and all of the sub Sections with as few round trips to the ...
0
votes
1answer
21 views
Consuming WCF Data Services Action Provider for Entity Framework
I have a DataService class on top of a Entity Framework 5 DbContext:
public class MyDataService : DataService<MyDbContext>, IServiceProvider
{
[WebGet]
public IQueryable<Product> ...
0
votes
2answers
22 views
Searching/filtering design
I have an asp.net mvc4 application to (for purposes of this question) manage work requests. The main area of this application is just a list of all the work requests in the system, simple enough.
The ...
0
votes
0answers
13 views
Entity Framework 5 unnecessary loading of records
I'm using Entity Framework 5 (C#) and I'm finding that unnecessary loading of records in the following case is causing performance issues.
I have created a messaging application, where messages are ...
0
votes
1answer
27 views
Add value to Many to Many relationship with EF 5 & ASP.NET MVC 4
Using Code First / MVC 4 / EF 5
I have a place object:
public class Place
{
public virtual int PlaceID { get; set; }
public virtual ICollection<Tag> Tags { get; set; }
...
1
vote
1answer
61 views
Setting up different connection strings for different user in an ASP.NET MVC 3 Web App + Ninject + EF
I'm trying to figure out how to set up a different connection string upon each web request.
This is my scenario:
one single webapp based on asp.net mvc 3 + ninject + entity framework
one single ...
0
votes
0answers
12 views
Can I Run 2 Entity Framework contexts simultaneously (1 read, 1 read/write)?
I am writing a tool that copies data from certain (user selectable) tables in one database to another database running the same schema. Can I use 2 Entity Framework Contexts (each with a different ...
0
votes
0answers
9 views
How do I make SupportsAdvancedSorting true for a binding source based on an entity?
I am using EF Code First in my C# Winforms application.
I have a System.Windows.Forms.Bindingsource control on a form and the DataSource is set to the name of my entity class
When I query the ...
0
votes
1answer
45 views
Entity Framework - Returning the same object after insert?
With ADO.NET and stored procedures, it's simple to return Scope_Identity() as an output parameter from SQL Server so that you can immediate perform a get and get the same row/object you just inserted. ...
0
votes
2answers
26 views
Entity Framework and OnModelCreating()
I am using the code first approach and I am trying to change the behavior of how EF creates my tables. I have two simple classes:
Note: I have my database dropped and recreated every time. This ...
0
votes
1answer
13 views
Transaction using TransactionScope is not rolled back in a multithreaded execution path
I have the following code:
Public Async Function Convert(schemaProgress As IProgress(Of ProgressReport), membersProgress As IProgress(Of Boolean), indexProgress As IProgress(Of Boolean)) As Task
...
-2
votes
1answer
39 views
Multi table join failing on last join for “Type inference failed in the call to Join”
I have a LINQ query that is joining 7 different tables on it is failing on the last join due to
The type of one of the expressions in the join clause is incorrect. Type inference failed in the ...
0
votes
1answer
20 views
get sub table record in entity framework 5 code first without using “Include”
i my application i had use entity framework 5 code first i want to get sub table data without using "Include" like
public class Category
{
public int Id {get; set;}
public string Name {get; set;}
...

