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
0answers
4 views
Which assembly should I place the compiled views for entity framework code first when context is in a separate project from the domain classes
In desperate need of help.
I'm using entity framework code first and trying to follow Julie Lerman's suggestion about breaking out the context from the domain classes and I'm unable to get entity ...
0
votes
3answers
33 views
Entity Framework/Linq EXpression converting from string to int
I have an Expression like so:
var values = Enumerable.Range(1,2);
return message => message.Properties.Any(
p => p.Key == name
&& int.Parse(p.Value) >= values[0]
...
0
votes
0answers
18 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 ...
2
votes
0answers
26 views
Testing: Entity Framework by faking context
I am eating myself up at this moment. It is like Entity Framework isn't testable. I've read alot of posts and threads where they use unit of work or moq or the repo pattern.
I am in a phase that i ...
0
votes
0answers
6 views
entity framework - inheritance design
Using .Net 4 with EF 1.0: I have a table per type inheritance database structure and edmx (see diagram and cutdown edmx at the end of the post. The edmx is created through a code generator). I've ...
0
votes
1answer
12 views
wpf dataGrid sum cell with entities
I display dataGrid in WPF and entity framework, column 2 has a price per unit column 3 has the quantity (column 4 has the discount), I want column 5 will be the summary. My question is how I can ...
0
votes
0answers
15 views
Entity Framework Code First: SaveChanges is not atomic
I have the following very simple unit test that reproduces a case where DbContext.SaveChanges is not atomic.
By not atomic I mean that the committed data can be read before all the commit was ...
0
votes
1answer
11 views
Select List of Poco classes for specific entityState
I've got a piece of software that is adding entries to a context.
using the changetracker I want to generate a List of Poco classes for reporting purposes.
Like this:
List<customRecord> ...
1
vote
2answers
64 views
LINQ Select with join and optional where
I have table with recipes and table with recipe categories. There are diferent type of categories in another table. I have optional parameter for category, my tables and linq select looks like:
...
2
votes
2answers
45 views
How to use entity framework when users are also creating tables
as I understand it when using WPF with the MVVM pattern, on the Model side of things, you can have your classes and entity data classes(which act as a type of database access).
I have run my eye over ...
1
vote
0answers
17 views
Retrieve only particular user data using entity framework
Can anybody suggest me how to retrieve particular user data from two different tables such as "Organizations" and "SystemUsers".
My Search form is like this:-
FirstName
LastName
Email
...
0
votes
2answers
39 views
Calculating number of records in database which has a value of Enum
I want to build a query to count how many elements are there in the database have certain value of Enum
I use this query
Grower = db.Sites.Count(x => x.Categories == SiteCategories.Grower ...
0
votes
2answers
45 views
Bring back DbContext.Detach() method with an extension method (EF5)
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 ...
1
vote
0answers
15 views
How to set focus to an Entity in the Entity Framework Designer when an on-click event is triggered?
I'm writing a Visual Studio Extension (VSPackage) which interacts with the Entity Framework. My extension currently consists of a ToolWindow with a UserControl as content. I can populate this ...
0
votes
1answer
43 views
EF getting mapped column name from string
I have three entities that share a common base class. Each of the entities have their own Map class for my context and load just fine. Each entity has a different primary key name which I rename in ...
1
vote
2answers
23 views
ASP.NET MVC: Detect state change of model propertiy in controller using Entity Framework
I have a more or less standard looking model:
public class Project {
public int ID { get; set; }
//... some more properties
public DateTime StartDate { get; set; }
public int Duration { get; ...
0
votes
1answer
15 views
Error in inheritence mapping in Entity framework 5
I have an existing database with this schema :
Table User : UserID, FirstName, LastName
Table Manager : ManagerID (PK, FK)
Table Coordinator : CoordinatorID (PK, FK)
the FKs are referring to the ...
0
votes
0answers
19 views
Entity Framework Add To Entites With Navigational Properties
I have this code in a WPF MVVM app
public const string FacturaCurentaPropertyName = "FacturaCurenta";
private Factura _facturaCurenta;
public Factura FacturaCurenta
{
get
...
2
votes
0answers
46 views
Entity Framework setup issue
When I run my code
using (foodEntities db_Linq = new foodEntities())
{
return db_Linq.Database.Exists();
//return db_Linq.Foods.Any();
}
I keep getting this error in the output window.
...
0
votes
2answers
14 views
Constraint error on delete in EntityFramework
I've got the following EF model:
public class Order
{
public string Id { get; set; }
public IList<OrderLine> Lines { get; set; }
...
}
public class OrderLine
{
public string ...
0
votes
1answer
21 views
Entity Framework : ObjectContext safety
I'm developing n-tier application that consists of 4 web applications
and one windows service and I would like to have one instance of ObjectContext per http request or one per thread.
The question ...
0
votes
1answer
9 views
Entity Framework pass a complex type parameter to a stored procedure
I have a stored procedure which is defined with custom input type because I need to send there whole grid. For example something like this:
CREATE TYPE members_table_type AS TABLE
(
mem_username ...
-1
votes
1answer
27 views
How to retrieve user data from two different tables using entity framework
I want to retrieve data of particular user from two different tables such as "Organizations" and "SystemUsers" in which the company details are stored in "Organizations" & his personal info. is ...
0
votes
1answer
14 views
Breeze.WebAPI.EFContextProvider “Only primitive types or enumeration types are supported in this context”
I originally thought this error was specific to Entity Framework. But now think it has something to do with BreezeJS's EFContextProvider.
I have a linq query that works fine in both Entity Framework ...
-1
votes
0answers
17 views
entity framework, count, Group by
how can I write this query in Entity framework?
SELECT testTable.Field23 AS [Issuer Code], Count(testTable.Field40) AS Quantity, testTable.Field40
FROM testTable
GROUP BY testTable.Field23, ...
0
votes
1answer
81 views
The entity or complex type ' ' not be constructed in a LINQ to Entities query
I hope someone can help me because when i edit my code . an exception shows
THIS IS MY CONTROLLER
public IEnumerable<APPLICANT> GetApplicant()
{
IEnumerable<APPLICANT> applicantdata ...
4
votes
2answers
49 views
C# EF Code First Deploy to Godaddy
I am having issues deploying my app to godaddy hosting using EF code first. I dont want my app to create the database since the database already exists.
So I read some posts on here and placed this ...
0
votes
1answer
18 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
46 views
Multiple tables containing one entity in Entity Framework
I am working on a system that sells products. This system has products, with subclasses for every producttype.
public abstract class Product
{
public int ProductId { get; set; }
public ...
0
votes
2answers
30 views
Retrieve a list of items where an item exists in one of the items lists
Please excuse the slightly confusing title. I have a model (Project) which contains a list of items (Users).
I would like to retrieve all of the projects, where the current user is a member of the ...
0
votes
0answers
25 views
Entity splitting with optional relation - (EF code first)
I have 2 tables: an Orders table and an OrderActivity table. If no activity has been taken on an order, there will be no record in the OrderActivity table. I currently have the OrderActivity table ...
0
votes
3answers
40 views
Load distinct values from database into List<>
I made a Record POCO class with a foreign key to an Event (=sport discipline).
A record can be linked to 1 event but an event can have multiple records (world record, olympic record, etc..).
Now I ...
0
votes
0answers
19 views
updating bridging table with new roles
I have 3 tables roles user and user roles. I am creating edit form for user and while updating user i need to update userrole bridging table whats the best way to do it in entity frame work my dal is ...
5
votes
1answer
55 views
Entity Framework 5 and SQL Queries
I am facing serious performance issues... My query is supposed to filter Products with SQL directly in database. When I execute this code, it doesn't, and it returns all products and filters them in ...
0
votes
0answers
11 views
add-migration causing a “Could not load assembly” error
Here's what I am looking at
PM> Add-Migration AddedSubdivion -StartUpProjectName Data -Verbose
Using StartUp project 'Data'.
Using NuGet project 'Registry'.
Could not load assembly 'Registry'. (If ...
0
votes
3answers
64 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 ...
0
votes
1answer
35 views
EF Architecture, adding inherited entity to an existing table
I´m not sure this could be achieved, therefore I would ask you guys!
Say I have an existing table which contains a book register with all books that was even written. We can call this table "Books" ...
2
votes
2answers
117 views
List of Expression<Func<T, TProperty>>
I'm searching a way to store a collection of Expression<Func<T, TProperty>> used to order elements, and then to execute the stored list against a IQueryable<T> object (the underlying ...
0
votes
0answers
20 views
where clause in entityDataSource with field from other table entity
I've got 3 tables, products, productspercategory and category.
You can choose a category, after which you get all products from that category listed.
But I cannot seem to get this to work.
I am ...
0
votes
0answers
8 views
Dynamic DBSet generation by package manager console
I try to generating my dbset properties for my referenced model project but i can't get all names of classes
what a need to do is:
PM> $models= here i need do get all names
PM> foreach ($model ...
3
votes
2answers
66 views
How do I join with OR condition?
This is my LINQ code:
from b in dbContext.SAPBillOfMaterials
from t in dbContext.AUXComponentTypes
where t.ParentId == b.Parent.Id &&
t.MaterialType == b.Component.MaterialType &&
...
0
votes
1answer
30 views
multiply model values on html
I use asp.net-mvc, entity framework. My view is like below:
<td class="center">
<span id="spanitem_@item.UrunId">@item.Fiyat</span>
<input type="text" ...
0
votes
0answers
43 views
Entity Framework - inheritance design issues [closed]
I am working on a project that is using the entity framework for all our crud operations. We also have a code generator that creates our basic objects using codedom. My problem is related to our ...
-2
votes
0answers
34 views
get late employee from database using entity framework
I am working in web app and I have 2 table 1 employees, 2-log_time(emp_id:int , log_time :datetime ,log_type : string ) i use calendar to select date and i wont Retrieve employee that ...
0
votes
1answer
17 views
Errors when including Entity Data Model across referenced projects
Decided to take a dive into recreating a website so that it's an ASP.NET MVC web application. We were originally using the Entity Framework for it, figured to still use it since it works nicely ...
0
votes
1answer
31 views
Entity Framework query not generated
I have the following object model:
[Table("APA_QuestionProduct")]
public class QuestionProduct
{
[Key, ForeignKey("Question"), Column(Order=0)]
public int QuestionID { get; set; }
...
-3
votes
1answer
82 views
What does the [] represent in C# [duplicate]
i've been developing in c# for 4 month and I still dont know what does the [] means in entity framework.
Here an example
[Column("mycolumn")]
public int Column {get;set;}
What is it ...
0
votes
0answers
10 views
Change Oracle Entity Framework Provider
I have a program which uses Oracle entity framework provider on visual studio 2008 (32 bit).
The provider which I used on VS 2008 is a sample provider which I downloaded from the internet
...
0
votes
1answer
34 views
Combine two records into one and update column
I have the following records in my CartItems table:
When I migrate the cart, I'd like to combine the two records into one with the cart id of Test1 and then update the quantity to 2.
So it would ...
1
vote
1answer
43 views
Default code generated by my EF model has errors
This is kind of a noob question, and I am actually a bit embarassed to have not been able to figure it out myself , who knew transition from LinqToSQL to EF will be fraught with nuances like this.
...







