The ADO.NET Entity Framework is a set of Object-Relational-Mapping (ORM) tools for the .NET Framework, since version 3.5 SP1.
0
votes
1answer
5 views
EF is not creating a column for a foreign key
In my domain model, which is of a moderate size - about 20 generated tables - there is only one relationship that Entity Framework is not mapping and I can't work out why. It is the relationship (1-1) ...
0
votes
0answers
5 views
EF Linq Multiple Inner Joins using nested subqueries
So I have two tables Site and Contact that have a many to many relationship through the ContactSites table. Both the Site and Contact tables have a Boolean attribute called Deleted. I am trying to ...
1
vote
0answers
18 views
Why is IEnumerable faster than IQueryable?
Introduction
I've been researching the difference between the two. I've decided to get my hands dirty and test them because I want to see the performance difference between the two (if any) and ...
1
vote
1answer
51 views
Generic Interface containing Generic methods requires same constraints?
I have the following interface defined.
IDbContext
public interface IDbContext<T> : IDisposable where T : class
{
DbSet<T> Set<T>();
int SaveChanges();
}
Which is ...
0
votes
1answer
12 views
Entity framework conventions
I have just started to work with the Entity framework and have created my Repository and context class and interfaces and defined my POCO and I am now trying to understand how the conventions working ...
0
votes
0answers
8 views
Modeling Hierarchical Data in EntityFramework
I'm trying to model a database around storing application configurations. This is my current design with includes tables for storing the XML Elements and Attributes, along with an ...
0
votes
2answers
39 views
Best practice for a multipage/form mvc web app
I have a project using ASP.Net MVC & EF5. The Model has a large enough number of fields that the app will need several pages to collect all of the data.
Once the data is collected it is ...
0
votes
1answer
16 views
linq query Unable to create a constant value collection within collection
im trying to get the articles which are labled as publid (DisplayFor = false) or with required permission (DisplayFor = true; and article.groups contains the granted groups;) and (GroupId = Guid.Empty ...
0
votes
2answers
27 views
Formatting within Entity Framework Where Clause
I have the following query on my db context
Dim query = (
From n In db.tblNews
Join nc In db.tblNewsCategories On n.CatID Equals nc.CategoryID
Order By n.DateEntered Descending
Select ...
1
vote
0answers
108 views
LINQ query in Entity Framework [closed]
I've been struggling a bit trying to rewrite this query in LINQ
SELECT CASE WHEN rr.ID IS NULL THEN 0 ELSE rr.ID END AS ResellerRepId
, ISNULL(rr.FirstName, 'No associated rep') AS FirstName
, ...
0
votes
0answers
31 views
Entity Framework: View exclusion without primary key
I am using SQL Server where I have designed a view to sum the results of two tables and I want the output to be a single table with the results. My query simplified is something like:
SELECT ...
0
votes
0answers
27 views
Linq method syntax left join instead of inner join
Hey guys I have tried searching a bit but have not been able to find a solution for this. It seems like it should be relatively simple however so I'm sure you all can help me figure this out quickly.
...
1
vote
2answers
27 views
Entity Framework Code-First One-To-One Relationship
I have two database tables:
Customers
CustomerId (PK)
Name
...
CustomerSettings
CustomerId (PK)
Setting1
Setting2
...
Is it possible to have these classes using code-first? If so, what is the ...
0
votes
1answer
31 views
Complex Entity framework query with left join, sum, group and order by
Below is a the type of query I am trying to write in entity framework. I'm not sure how to perform left joins (my real query has 2 of them), and also a summary column and a group/order clause.
...
0
votes
2answers
74 views
A more efficient way of showing adds/deletes in a context
I am cloning user's information, security, departments and several other tables of information to create a new user with same setup. This information is being displayed through several DGV's. When I ...
0
votes
1answer
40 views
Transform data before and after storage in EF database
I have a List that is serialized into an SQL database. I am using EntityFramework, and it would be great if there is a way in the model to be able to have a way of extracting the field (stored as a ...
0
votes
2answers
25 views
ASP.NET MVC4 application using Angular.JS Active Directory Authentication
Im writing a web app using C# with ASP.NET 4.5/Entity as a backend. With Angular.js handling
most of the front-end/database query stuff. ASP.NET 4.5 makes it really easy to connect to
our active ...
0
votes
1answer
67 views
Entity framework model class navigation property
I have a class, Rate which can have two locations; LocationTo and LocationFrom. Locations should be a drop-down list on the page.
My models look like like this:
public class Rate
{
[Key]
...
0
votes
1answer
23 views
SQL/Entity Framework Group data by hour
I have a table with the information below, this is a small subset of a much larger dataset (about 100k rows) Each row is an incoming request, what i am trying to do is get the correct query to allow ...
0
votes
0answers
16 views
Entity Framework Database First inherits models from base class
I am using Entity Framework Database First for working with db.
I have a base class EntityBase
public class EntityBase
{
public Int32 Id { get; set; }
}
I have some other classes that ...
0
votes
0answers
80 views
Looking for a LINQ lambda expression for a left outer join [duplicate]
My Report search function is currently set out as follows.
public IEnumerable<SendReport> Search(int page, Report filter)
{
var pageSize = _webConfiguration.PageSize();
var rowsToSkip = ...
0
votes
0answers
10 views
Why does rebuilding entityModel create a second designer.vb file
I have an entity data model (created via database first) which I am regularly updating as I add various stored procedures to the underlying database and make minor adjustments to the underlying ...
0
votes
1answer
31 views
ASP.Net MVC C# retrieving the last post of a parent child child table
I have a typical forum app, using nested tables:
Forum => Topic => Post(s)
I'm trying to use LINQ to populate a ViewModel to show the last poster for a post, in a topic, within a Forum - however, ...
0
votes
0answers
21 views
Debug code-first Entity Framework migration codes
I'm using Entity Framework code first in my website and I'm just wondering if there is any way to debug the migration codes. You know, like setting breakpoints and stuff like this.
I'm using Package ...
2
votes
3answers
95 views
I have a POCO, can I get a proxy from the DbContext?
I have a model that I get from a POST request. Since my view defines its POCO type, the object created from the submitted data is also a POCO. Being a POCO, it doesn't have various virtual properties ...
0
votes
0answers
31 views
Entity Framework 5.0, Code First, relationships, fluent API and seeding the database
I am using Visual Studio 2010, C# 4.0 and Entity Framework 5.0.
My (simplified) models are:
public class Case
{
public int CaseID { get; set; }
public int CaseStatusID { get; set; }
...
0
votes
2answers
15 views
How to get row index of matching row in table using EF 5?
I have a Customers table having various fields, one of them is "PostCode"
I want to find order the customers by customername, and want to find the index of a first row matching the Postcode
For ...
-2
votes
0answers
21 views
DDD and a standard .Net Implementation? [closed]
I am working on a new Client-Side application and i wanted to try : EF Code First, WPF/C# following DDD Design Approach. I started by learning http://microsoftnlayerapp.codeplex.com/. I found it ...
0
votes
0answers
14 views
MySQL Entity Framework Migrations
we tried to implement migrations for our code first EF5 MySQL project. But when we run the update-database command in the package manager, we get a weird error:
Anyone any idea why??
...
0
votes
0answers
44 views
Converting a Store Procedure into LINQ
In my ASP.NET MVC project, I'm trying to move an old Store Procedure(SP) to my business layer using LINQ. I've got the tables Audit, AuditAction and CorrectiveAction. 1 Audit has N AuditActions and 1 ...
1
vote
0answers
18 views
entity framework, oracle, guid endianness
I use EF 4 with oracle. I have a table with a RAW column containing guids.
These guids are imported from a sql server db by some process I cannot control.
My issue is that if I simply use EF to ...
0
votes
1answer
40 views
Duplicate DataType is being created on every Product Creation
I have a Product Model that allows users to define their own Custom fields for their Product. This is accomplished by have 3 tables/models. The Product model which contains an IEnumerable ...
0
votes
0answers
20 views
DbContext does not contain a definition for 'Format' and no extension method 'Format'
Create a OData client that get reference to a OData Service (using WCF Data Services). This OData Service reference to a project that have a DBContext (I use Code First with Entity Framework). When I ...
0
votes
0answers
24 views
How to write entity framework subquery
I am trying to convert the following SQL query to the Entity Framework:
select d.* from [ImportedRule] d
inner join
(
select r.id as importedruleId
from ImportedRule r
inner join ...
4
votes
4answers
60 views
Handle Stored Procedure in Entity Framework
How to handle stored procedure that returns different outputs in Entity Framwork.
For example , on sp, there is if condition and else condition. if condition return integer and else condition return ...
1
vote
1answer
34 views
InvalidOperationException when saving to DB
I have a problem when adding posts to my DB, this "Add" function is called from multiple threads. And usually very quick after eachother, I dont know if this matters, but thats the way it works.
...
0
votes
2answers
22 views
Not sure how to map many to many relationship - Reuse mapping table different entities
I'm confused with mapping the following relationship.
I have the following three relevant entities: User, Group, GroupUser.
User has information about a user account, a group information about the ...
0
votes
1answer
31 views
EF Navigation Properties not working?
I have a Card class:
public class Card
{
public Card(){}
[Key]
[Required]
public virtual int CardId { get; set; }
[ForeignKey("StageId")]
public virtual Stage Stage { get; ...
1
vote
1answer
6 views
Best way to handle Underlying Provider Failed to Open Internet Dropout
What is the best way to handle internet dropouts with the entity framework? I have an app at a location that often has the internet die, and while it doesn't totally fall over, what are the strategies ...
0
votes
1answer
21 views
EF5 stops working after installing SQL Server 2012
I was running some test solutions on my computer with SQL Express. Recently I installed SQL Server 2012, and now I get the following exception when trying to instantiate the context:
{"The underlying ...
1
vote
1answer
19 views
Many to Many and cascading in EF with no inverse property
I have an object in my domain model, User which contains a List of configuration settings. It looks like this:
public class User
{
public int ID { get; set; }
/* various user properties */
...
0
votes
1answer
37 views
Breeze returns navigation properties in the metadata, but not on the entities
This question has been completely edited to actually outline the root issue after further investigation.
I was having trouble with no navigation properties appearing on my client side metadata. With ...
1
vote
1answer
51 views
Many to many relationship is only partly resolved
I'm having some trouble with EF 5 Code First, mainly because i don't know for what behaviour i have to look for.
It's about writing a calendar backend.
A Calendar includes a list of CalendarEntries
...
0
votes
0answers
15 views
Display database tables accessed in controller/model on view page
I have a large ASP.Net MVC 4 project that uses Entity Framework with Dapper, and I have a task to display a "debug" area at the bottom of every page (if the user meets some authentication criteria). ...
0
votes
1answer
20 views
GridView with ObjectDatasource UpdateMethod
I have an ASP.NET WebForms page containing an ASPxGridView and an ObjectDataSource:
<dx:ASPxGridView ID="gvEmployees" runat="server"
AutoGenerateColumns="False" DataSourceID="objDsEmployees"
...
2
votes
1answer
16 views
Can mapping the results of a linq query being mapped to a class be simplified?
I've got a class called Customer that has several properties, i.e. FirstName, LastName, City, State
The Customer class has some data annotations to fix naming and other things. (This class is being ...
1
vote
1answer
33 views
Entity Framework / Database - Archiving Foreign Key Records
I've developed an application for a client with the following relationship:
A SalesOrder has a foreign key relationship to a Customer (one-to-one).
The client now wants to be able to delete ...
1
vote
3answers
72 views
Which version of Entity Framework should I install? [closed]
I am working on a new project and want to use EF. My last project used EF4 and it was installed as part of VS 2010 (or 8).
In this project, I am using VS 2012 which seems to want me to download EF ...
0
votes
0answers
16 views
Silverlight 5 Xml Serialization Error
I recently converted a project from Silverlight 4 to Silverlight 5. In my project, I have many uses of the XmlSerializer class, where I either serialize or de-serialize my entity framework objects. I ...
0
votes
5answers
111 views
What would be the “cheapest” way to check for updates periodically?
Basically I'm writing an ASP.NET MVC application that though a javascript sends a GET request every 30 seconds, checking if a certain row in a table in the database has changed.
I've been looking at ...




