Tagged Questions
4
votes
2answers
583 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
402 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
1answer
55 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
320 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
655 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
239 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
19 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
49 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
72 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
297 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
157 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
115 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
282 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
548 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
143 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
379 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
425 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
425 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
0answers
15 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
23 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 ...
0
votes
1answer
24 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
129 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
36 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
422 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
451 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 ...
0
votes
1answer
83 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
232 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
212 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
82 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 ...