Tagged Questions
4
votes
2answers
627 views
Can Entity Framework 4.1 designer “update model from database” for selected entities only?
The situation: Sometimes a database schema is not what you would consider an ideal representation of the system's information and you may not be able to change it. We have been using Entity Framework ...
3
votes
2answers
492 views
Change Entity Framework provider in configuration
I was hoping to be able to switch data providers to/from SQL Server and SQL Server Compact Edition via just a configuration change. But it doesnt work and looking at the EDMX file I think I can see ...
3
votes
2answers
2k views
Need to generate EDMX files and compile them
My question might be little bit different or basic for advanced users here.
I have a web application which is customizable by administrators. This means, the admin can add new table schema or edit ...
2
votes
2answers
113 views
Best Practice - Mixing Table-Entities with View-Entities in EntityFramework?
I have a legacy database that I'd like to interact with Entity Framework.
The database is highly normalised for storing information about flights. In order to make it easier to work with some of the ...
2
votes
1answer
61 views
Missing associations when building a model from existing SQL server database
I'm using the Entities Framework for the first time. I have a strange problem: I have this small database on SQL-server. Here is the diagram from the management studio:
As you can see, the foreign ...
2
votes
1answer
338 views
How to switch between SQL and SQL CE in Entity Framework 4? Or how to programmatically change the “Schema Namespace” inside an edmx file
Working with a model first approach on Entity Framework 4, I'd like to switch the database from real SQL (Data.SQLClient) to SQL CE (Data.ServerCe) back and forth.
I know how to do it manually:
...
2
votes
2answers
706 views
EF4: How to generate: .csdl, .edmx, .msl and .ssdl files
I'm working on a project that is using linq to sql.
In my model folder I have 4 files:
model.csdl
model.edmx
model.msl
model.ssdl
But that model is out of date with the current database.
I'm ...
2
votes
2answers
260 views
Problems with LINQ WhereClause
Many thanks to leppie:
Currently I got
Expression<Func<vwMailMerge,bool>> whereClause= null;
List<vwMailMerge> mailMergeItems = null;
int personType = ...
1
vote
1answer
24 views
multiplicity between tables on edmx shema
I'm trying to understand an .edmx shema and i don't know what exactly means the "->" on the table name and what kind of multiplicity is.
I haven't saw something like this before..can you help me?
...
1
vote
1answer
71 views
Manually added stored procedures in edmx file
Is it possible to persistently add the manually added stored procedures in the edmx file? The database is generated from model. Everytime I change something within the editor in the edmx file, the ...
1
vote
2answers
74 views
writing Linq-to-Entities query
I am new to LINQ and Entity Framework and I am stuck on a particular query which I am trying to write.
I have a database with the below structure. To keep it simple, I have just included the files and ...
1
vote
1answer
384 views
ASP.NET MVC3 Entitiy Framework - The EntitySet 'x' specified as part of this MSL does not exist in MetadataWorkspace
I'm making an reservation system.
The following query
Reservatie r = (from res in entities.Reservaties
where (res.datum == date && res.tijdslot == time)
select ...
1
vote
1answer
173 views
Server Error in '/' Application
I have a standard ASP.NET 4 web site which uses the Entity Framework. It seems at random intervals, I get fatal errors. Refreshing the page works, but I know it's not a problem with the database. The ...
1
vote
0answers
121 views
Wrapping navigation properties in Entity Framework 4
Say I have a database table Node.
The table contains (among other attributes) the ParentID attribute which is a self-referencing FK.
Entity Framework model created from such database table contains ...
1
vote
1answer
357 views
Entity Framework - Already Defined
I have a problem with an EDMX file which I've never encountered before. Seemingly randomly when the site is running or I'm debugging, the EF will bomb out and complain that everything is re-defined. I ...
1
vote
1answer
502 views
Generating Entity Classes using edmgen
I have a edmx file created using the entity entity framework model.
Whenever I make some changes in the edmx(Like removing a column from the entity), I would like to generate the entity ...
1
vote
1answer
587 views
Visual Studio 2010 Entity Framework .edmx not available to edit
I am trying to edit my .edmx model in Visual Studio 2010 however, the symbol is not correct and when I click to edit it does not present the designer where I can update the model etc
What I get is ...
1
vote
1answer
150 views
creating a UI with a button which will dynamically create .edmx file at runtime
i want to create a user interface will should give me the option to select the database from the present ones and accordingly create its .edmx file.
1
vote
2answers
401 views
EDMX new column generates error on ToList() call
We've added a new column to a database table. The column is defined as follows:
Name: DisplayAsSoldOut
Type: Boolean
NOT NULLABLE
Default Value: 0
We've refreshed our EDMX data model and the new ...
1
vote
1answer
446 views
edmx connection string
I am developing an application that uses edmx for dataaccess.
I realized that each edmx file have its own connection string in the configuration file.
Is there a way to share one connection string for ...
1
vote
2answers
1k views
Error 3002: Problem in mapping fragments | c# linq to entities
I have a console application and what I'm trying to do is that every time the appllication runs, the date and time is sent to a table within my database.
The table structure is like so:
FTPRuns
ID ...
1
vote
4answers
444 views
How can I use the EntityModelSchemaGenerator to generate less then my entire model?
We have a big (and growing!) database. We're trying to not have to build the models by hand, and we found this
EdmGen2 which is supposed to build our EDMX entity models for us.
Since we have such ...
0
votes
1answer
23 views
Cannot process 'reportname.rdlc' because it is not an EDMX file
I've inherited a C# app which uses an .rdlc file. I get an error (not a warning) in my error list:
Cannot process 'reportTerminalStatus.rdlc' because it is not an EDMX
file.
but unlike normal ...
0
votes
0answers
16 views
c# edmx - binary to mysql blob
I'm working with the new "edmx" function in visual studio 2010.
I have create a connection between my Mysql Server and the model file.
Everything works fine. But when I try to put an binary/blob ...
0
votes
1answer
95 views
Occasional “The underlying provider failed on Open” errors when using EF4 (edmx model)
I hope someone can help me with a solution to the following error. The application in which the error happens is running in production and I never experience the error myself. However around 20 times ...
0
votes
0answers
35 views
How to make a “Related Text Template” (T4) for an Entity Framework 4 EDMX file?
In the properties of and Entity Framework 4 EDMX file, there is an option to "Transform Related Text Templates On Save". But what exactly is a "Related Text Template"?
Specifically, I want to run ...
0
votes
1answer
28 views
EF - Import a new table from DB and have it replace an existing one
So I need to update the model from the db. The issue is that I want the new table to replace an existing one.
This is the format of my existing table.
Here is the new table after import it from ...
0
votes
1answer
170 views
T4 - How to conditionally set base class in declaration
I have a modified T4 template that builds classes from my edmx and its working smoothly except for derived classes.
Product : BaseItem // works fine as do all top level classes
TranslatedProduct : ...
0
votes
1answer
39 views
copy and paste properties names from edmx
Assume I just updated my model and added a table with 30 columns.
Now I need to create a business class with this 30 properties.
I don't want to use any tools that created this class but I only want ...
0
votes
1answer
477 views
Unexpected EntityObject Error
I have the following code:
public IList<T_CLIENT> Get_All_Obj()
{
try
{
IList<T_CLIENT> LesListe;
using (FaExpedEntities oEntite_T = new FaExpedEntities())
...
0
votes
1answer
91 views
“No such column Extent2.<fieldname>” Problems
I've inherited a large c# project and am running into issues updating the data model.
I have made my updates in the wysiwyg edmx data modelling editor (vs2010) and the updates seem fine. But it's hard ...
0
votes
1answer
237 views
Operation CRUD with edmx and objectdatasource error Idisposable
I have 3 tiers apps.
In the Persistance layer the is just the drag 'n' drop Entities.edmx file.
In the Presentation layer :
<asp:ObjectDataSource ID="ObjectDataSource_Tva" runat="server"
...
0
votes
2answers
3k views
Update existing EntityCollection in Entity Framework
I try to work with link to entity, and i want to work directly with my entity in my application.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ...
0
votes
1answer
223 views
Are there good third party EDMX generator/updater tools out there?
Are there good third party EDMX generator/updater tools out there?
The visual studio EDMX is driving nuts. I constantly have to restart VS2008 in order to get the EDMX to properly update.
Are there ...
0
votes
1answer
84 views
Visual Studio Model Won't Show SOME New Tables
I added some tables to my DB, and refreshing the model didn't work. So I deleted my .edmx file completely. I then recreated the model according to my updated DB, but the same tables were still ...