A tag for ADO.NET Entity Framework 4.x, itself an object-relational mapping for the .NET framework.
0
votes
1answer
17 views
Accessing global constants that can change
In php I can for example create a .inf file containing some constants defined and include it into the code, then if someone change the constantg inside it, it will be used updated.
Whats the similar ...
1
vote
1answer
39 views
in relation many to many is included a lot of objects
I have a many to many relation between two tables in my database, so in my edmx model I have only two tables, no the intermediate table. This tables are Movies and Genres.
When I search for some ...
0
votes
0answers
10 views
is really useful raw sql in entity frame work when I want realated entities?
I am using EF 4.4 and I know that the best performance that I get is using raw sql to query the information to the database.
I use to do in this way:
myContext.Mytable.SQLQuery("select * from ...
0
votes
1answer
32 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.
...
1
vote
0answers
16 views
Model First Entity Framework connection string error “Initialization string begin with 0 ”
I'm building an ASP.NET web app with an Entity Framework model first DAL.
I've two VS project:
a class library with the designed model
an ASP.NET Web Application.
In the class library EF ...
0
votes
0answers
48 views
How to use Any() with System.Linq.Dynamic?
I have an example with two tables - Movies and Genders. The relationship is N:N so I have in Movies a collection of Genders and in Genders a collection of Movies.
I am using System.Linq.Dynamic to ...
-1
votes
0answers
8 views
Need a Help in Selecting a record using Ef 4
I want to select single or multiple records using lazy loading In Entity Framework, I got stuck pls help me in this
I have my Controller Like This, and my table name is Event_Session
response.Agenda ...
1
vote
0answers
10 views
EF 4.0 with oracle
I want in VisaulStudio 2010 Use EF 4.0 with oracle.
I install visual studio and oracle 9g.
when add item => ADO.NET entity data model and new connection =>Datasource : dont any oracle server.
...
0
votes
1answer
33 views
Introducing FOREIGN KEY constraint may cause cycles or multiple cascade paths - why?
I've been wrestling with this for a while and can't quite figure out what's happening. I have a Card entity which contains Sides (usually 2) - and both Cards and Sides have a Stage. I'm using EF ...
0
votes
0answers
8 views
How do I Set EntityState using vs 2010 and entity framework 4.4
I have a project in vs 2010 .net 4 that uses Entity Framework 4.4
I am trying to do this
ctx.Entry(entity).State=EntityState.Added;
However "Entry" does not seem to exists!!
I have looked at my ...
0
votes
0answers
13 views
how to get the sql sentence of the IQueryable and the ToList?
I would like to know how I can get the sql sentence of an IQueryable and a Tolist.
I would like to compare this cases:
List<MyTable> lstresult01 = myContext.Mytable.Where(t=>t.ID == ...
1
vote
1answer
13 views
this has the advanteages of the IQueryable?
If I dont' wrong, I can get the data from a database in to ways:
First with an IEnumerable:
myContext.MyTable.ToList();
With an IQeryable:
IQueryable<MyTable> query = myContext.Mytable;
I ...
0
votes
2answers
53 views
Entity Framework Code First DB error
I'm trying to make a web application MVC4 in c#.
I'm using the same DB than the DB created initially for users (anuthentication) (more easy to deal in connexionstrings).
So I made 3 models and the ...
3
votes
2answers
49 views
how te create dynamic queries?
I have a repository that use EF 4.4 and a class that has the parameters that I can use to filter my query. Also, I use SQLQuery to create my dynamic raw sql to add conditions according to the ...
0
votes
0answers
5 views
Functions in the Entity Framework conceptual model
I am trying to find a list of supported functions that Entity Framework can use in a custom function in the conceptual model.
Looking at the example from MSDN it uses a function called Year. Is ...
0
votes
1answer
28 views
How to set Entity framework 4 CommandTimeout in connection string?
Is it possible to specify commandTimeout in connection string in app.config?
According to this SO question: Entity Framework with MySQL - Timeout Expired while Generating Model the following should ...
0
votes
0answers
18 views
Out of memory Entity Framework 4
I am hoping some one can help as I'm at a loss.
On my machine I can run a process that retrieves quite a lot of records using Entity Framework 4 and it uses at maximum about 190 000 KB. On a client ...
0
votes
0answers
5 views
Specify Length of returning Edm.String in Entity Framework function
I am trying to create a function that will convert an integer column to a string.
I have the following function defined in my Entity Framework Conceptual Model.
<Function ...
0
votes
0answers
13 views
Change NavigationProperty name in entity framework 4.0, database first, using t4 template
So we are using EntityFramework with a database first design. One of the tables that we have references itself twice. Which is a problem since it creates four navigational properties which by default ...
1
vote
2answers
35 views
app.config and Entity Framework for remote connection
I have a connection string to a local database which works ok.
<connectionStrings>
<add name="Entities"
connectionString="metadata=res://*/RNADataModel.csdl|
...
0
votes
1answer
17 views
Row Id is not created in a table for a 1: 1 realtionship in EF CodeFirst
I am having a class which is having instance of other class in itself as a property
Class A
{
Public B PropB {get;set;}
}
When I see the Data Model of the class I see B as a navigation ...
0
votes
0answers
22 views
Entity Framework migrations not working after upgrading from EF 4.3 to 5.0
I have a fully working Entity Framework 4.3 project with migrations which I have just upgraded to EF 5.0.
I have now added a couple more migrations with EF 5. Everything works if I upgrade from an ...
0
votes
0answers
42 views
This function can only be invoked from LINQ to Entities
Using the following code I get error:
This function can only be invoked from LINQ to Entities.
on this line:
.Where(x => x.e.DateTimeStart > currentDateTime &&
Any idea what I am ...
-1
votes
2answers
54 views
Getting a comma seperated list from a linq projection
var users = from u in db.Users.Include("UserLogins")
join ul in db.UserLogins on u.UserId equals ul.UserId
join ua in db.UserActions ON ul.UserLoginId = ua.UserLoginId
where ...
0
votes
2answers
41 views
I cannot locate where mvc4 store its database
I am very new to MVC4 and try to learn everything by doing a simple project. I created a model and a control succesfully. But I couldnt understand where it stores its database.
I can do ...
1
vote
0answers
16 views
Foreign key error “RelationshipManager.GetRelatedReference” in join statement. Linq with MVC3
This is a part of my database:
I'm trying to get all groups that study a subject which is assigned to a specific exam:
ExamView.GrpLst = (from ex in en.Exam
join ...
0
votes
0answers
10 views
use update EntityFramework.Extended to the project
I have a list of ApproveClass
public class ApproveClass
{
public int PeriodAnswerID { get; set; }
public int AssessPersonnelID { get; set; }
public int ...
0
votes
0answers
17 views
How to Implement transactional unitofwork
I'm looking for implementation for transactional UnitOfWork based on Entity Framework. with generic repositories.
I'v been looking of http://www.catelproject.com/ and other implementation on the web. ...
0
votes
0answers
30 views
EF or sql commands against both SQL CE and Sql Server
Issue backgorund:
I want to design a new application that uses a web service with SQL Server behind it. The client application will access the data through the web service. Also it will synchronize ...
0
votes
0answers
8 views
GetTableName<T> not found on ObjectContext
I tried to use the second answer to the DbSet table name question, the DbContext based version, but I get a compile error on:
return objectContext.GetTableName<T>();return ...
0
votes
2answers
25 views
Error: LINQ to Entities does not recognize the method
I am getting following error with this linq query:
LINQ to Entities does not recognize the method 'System.Collections.Generic.List1[System.Char] ...
0
votes
1answer
20 views
Entity Framework designer not updating conceptual model?
I'm using Entity Framework 4.0 (on .NET 4.0) with a database-first approach using Visual Studio 2010.
I have an .edmx model file representing my database tables. Once in a while, I'm changing ...
1
vote
2answers
40 views
Why can't you attach new objects to tracked objects using navigation references?
In short, why does this fail (myChildObject is not added to the database). Note that it works with ObjectContext:
using (var db = new dbEntities())
{
var myParentObject = ...
0
votes
1answer
31 views
How to update only one table for model from database with Entity Framework?
I have a model generated from db with Entity Framework. When I have any change in database, I update model from database to get the change in model. But this update is applied to all entities (tables) ...
1
vote
2answers
15 views
Entity Framework migration fails trying to insert NULL into CreatedOn
I'm trying to update my database on a development server (it all worked fine on my local machine) using Entity Framework and Code First Migrations. I used the command update-database -Script ...
0
votes
2answers
50 views
Add object and its relationships atomically in SQL Server database
Suppose I want to insert a new Experiment in my SQL Server database, using Entity framework 4.0:
Experiment has 1..* Tasks in it
Both Experiment and Task derive from EntityObject
Also, there is a ...
4
votes
1answer
78 views
DbContext doesn't release SQLite database
First, these are my intentions:
Create a DbContext on SQLite
Read and write from/to it
Close context
Move the file to another location
Points 1-3 work perfectly. The problem starts when I try to ...
0
votes
0answers
39 views
Specifying A List in the Entity Framework C#
The scaffold feature in MVC4 Visual Studio doesn't include the class 'CompatibleGames' in the context class after I scaffolded this model:
public string Name { get; set; }
public int CategoryId ...
0
votes
0answers
9 views
Entity framework Entities in 'xxContext.x' participate in the 'x_y' relationship error
before me one developer used Entity framework code first .And i am not good at the EF code first.So when i try to insert my code give this error :
Entities in 'TourismContext.HotelOrders' ...
1
vote
2answers
42 views
Linq query with Include to count joined records
I"m using Linqpad connection to Entity Framework to form my Linq query, it's great for seeing your results without having to run your app..
Anyway, I have an Events table, that is joined to an ...
0
votes
1answer
25 views
Optimistic mode concurrency with two fields in Entity Framework
I'm using Entity Framework 4, C# and MSSQL Server 2008 R2. I know about the optimistic concurrency with rowversion, But I want to include two fields in concurrency. One is updated_date (datetime) and ...
0
votes
0answers
24 views
The object is in a detached state. This operation cannot be performed on an ObjectStateEntry when the object is detached
There's a pile of MVC/EF code that I am debugging that someone else has transliaterated-from-Java written.
One snippet from the code resembles this:
public ActionResult Index()
{
using ...
0
votes
1answer
16 views
Linq query to return boolean
I am inserting data into my entity table using .AddObject(). The object is of the entity table's type. The object is eventStudent, it has string eventStudent.ID, bool eventStudent.StudentPresent, ...
1
vote
1answer
30 views
Data Annotations for validate an entity framework entity
I used EF to create an entity.
Now The user can input datas to the DB trough entity framework.
I want to validate the object by using Data Annotations.
The solution should be to create one object ...
0
votes
0answers
16 views
Getting “multiple instances of IEntityChangeTracker.” Error, Best way to handle context object to solve?
I have solved this error by passing through my initial context object to my action and this works. However it has raised a question.
Basically I have a ViewModel which makes use of the context object ...
0
votes
1answer
20 views
3rd level filter with LINQ in WCF Data Services (LINQPad)
Hi guys maybe I write this the wrong way but can't make it work.
I got the following Entity Model:
[Division]<0..1>--<*>[Session]<1>--<0..1>[Film]
I run the following LINQ query (in ...
1
vote
1answer
26 views
Some clarity on how to use View Models with MVC and ModelBinding please
I am getting confused about the use of ViewModels in an edit form where one of the properties is the editable entity ie
ViewModel
Entity
Actions
The model desclaration at the top of the View ...
1
vote
0answers
25 views
Add parent row and add child for that new parent row
i am creating new record in 'Timecard' table and at the same time i want to create one record in 'TimecardStatusTrack' table using entity framework. i am able to create parent record but while adding ...
-1
votes
1answer
48 views
Error connection with Azure SQL Database with Windows Azure
The below error occurs often. I wonder if anyone has ever experienced this or what would be the reason?
I use Entity Framework 4.0 and. NET 4.0 and Visual Studio 2010 and Windows Azure SDK 1.7 and ...
0
votes
0answers
53 views
EntityFramework - how to configure cascading deletes on a join class with fluent api
I have a (simplified) entity model as follows
public class Address {
}
public class PersonAddress {
public Address Address {get; set;}
}
public class Person {
ICollection<PersonAddress> ...





