An .edmx file is an XML file in the .Net Entity Framework that defines a conceptual model, a storage model, and the mapping between these models.
0
votes
1answer
24 views
What is the best way to re-name a column in edmx?
I am using entity framework 4.0 my approach is Database first approach. what is the best way to rename a column name or change the data type of column in edmx.
thanks in advance.
0
votes
1answer
20 views
Add Record to Table A and get PK Violation for Table B?
Here's code throwing exception (line 68):
protected void CreateTickStoreRecord(TickPriceEventArgs ev)
{
try
{
ctx.TickStores.AddObject(new TickStore()
{
...
0
votes
0answers
15 views
ADO.NET Entityt Data Model throwing PK Violation for wrong table?
Trying to add a record to a table called TickStore and ADO.NET Entity Data Model throws PK violation for a different table called Session. There's no FK or any constraint between these two tables.
...
0
votes
0answers
54 views
How can I override DbContext.SaveChanges() when using EntityDataSource and database generated model (.edmx) EF 5
This is my first post, I hope I'm not breaking any rules here or my question has not been asked elsewhere. I have been stuck for almost 4 days on this, and came up with a few non-convincing ...
0
votes
0answers
44 views
SQL Server 2005 column not visible at asp.net mvc4 controller
I am using ASP.NET MVC4 and SQL Server 2005 to develop a web application. Everything is working fine but I got stuck at a point. I updated my table with a new column NO_Person and updated my .edmx ...
0
votes
1answer
42 views
Entity Designer / Entity Framework / edmx - update only storage model (not conceptual model)
I have created a conceptual model and I've mapped it to storage model.
Then I've been making changes to DB, adding/changing/etc fields.
What I want now is to update the mappings between my new DB ...
1
vote
1answer
49 views
EntityFramework - How to get ObjectSet<T>
I'm working with asp.net mvc3.
I have a edmx that was created ADO.NET Entity Data Model. (Data-First)
TestDb.Designer.cs
namespace Test.Web.DataModel
{
public partial class TestDbContext : ...
0
votes
1answer
35 views
EntityFramework - How to get tables name from Edmx
I'm working with asp.net mvc3.
I have a edmx that was created ADO.NET Entity Data Model. (Data-First)
TestDb.Designer.cs
namespace Test.Web.DataModel
{
public partial class TestDbContext : ...
0
votes
1answer
18 views
Opening EF designer with partial diagrams in VS 2010
Recently my team recently upgraded from VS 2010 to VS 2012. At the same time we created a branch of our code base, one that we needed to work on in VS 2010 for legacy support and bug fixes, and the ...
0
votes
0answers
23 views
EDMX migrating from webservice to local access
Right now I have the following architecture:
WPF client app to display some data
Self hosted service containing access to a database (self hosted as described here)
service uses edmx file to ...
0
votes
0answers
93 views
Error 168: The store provider factory type 'Oracle.DataAccess.Client.OracleClientFactory' does not implement the IServiceProvider interface
I have the following error :
Error 168: The store provider factory type 'Oracle.DataAccess.Client.OracleClientFactory' does not implement the IServiceProvider interface. Use a store provider that ...
0
votes
1answer
130 views
Entity framework stored procedure issue
I have following stored procedure defined:
USE [BcmMetrice]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[ActivityAdd_proc] @Name nvarchar(max),@Description nvarchar(max) ...
0
votes
0answers
18 views
How to moq a navigational property in a model class generated by EDMX?
I'm using the moq framework to test some behavior on model classes generated by the EDMX designer.
var mock = new Mock<EDMXGeneratedClass>();
mock.Object.ChildrenProperty =
new ...
1
vote
1answer
20 views
Programmatically generate .generated.cs from an EDMX in an CCNET automated build process
I'm trying to use CCNET to automatically build an MVC Project using EDMX.
We don't save the generated files in the source control (such as the files created by the EDMX when you open it and ...
0
votes
1answer
102 views
ASP MVC3 adding primary key that doesn't exist in database
I am trying to add a table by the name of AgentId to my ASP MVC site. This table does not have a primary key, but it does use a foreign key to map it to another table, BankMasterList. One agent may ...
0
votes
0answers
47 views
C# DbContext - All DbSets<> are null after an instance of context has been created
I'm new here. I've have a pretty solid understanding of C#. I am using VS 2012. At present I have created the .edmx model, altered the code generation to the new EF5.x DbContext Generator which all ...
0
votes
1answer
45 views
Entity Framework: List of invalid characters in Entity Name
I am working on a designer which is very similar to Edmx designer in Visual Studio. I want to add the same validation that Edmx designer applies to Entity and Property Names. Can someone share what ...
0
votes
1answer
25 views
Tables not mapped error, after clicking 'Generate DB from Model'
Working in VS2010. I added 4 columns to a table in the database, then opened the project edmx file to 'Update from the Database'using the built in link. By accident, I clicked 'Generate Database ...
0
votes
1answer
48 views
Why we have to delete edmx and recreate it anew on the server, every change we make?
We make some WCF service that uses Entity Framework (edmx file). Every time we make a change (even not related to the framework / DB), we have to delete the edmx and recreate it and build the solution ...
3
votes
2answers
111 views
POCO Class in EF not working as Expected
I have created a DataBase in SQL and created an EDMX in Visual studio 2012. It Automatically created POCO (TT) Classes. Everything looks fine.
Now i change my Column name for some table. I update ...
4
votes
1answer
78 views
Why would the entityAspect of my query items be null? [Resolved]
Working with breeze backed by SharePoint, as described here, and using TypeScript rather than JS.
In a DataService class I create an EntityManager and execute a Query:
private servicePath: string = ...
-1
votes
2answers
55 views
EntityFramework - why so many entity keys?
I've created an Entity Data Model from my SQL Server database. Despite only having one primary key in each of my tables, almost all of my properties are marked as Entity Keys. I can of course modify ...
0
votes
0answers
121 views
How to automatically set default value for custom property in EDMX Designer Extension?
I created EDM Designer Extension with custom property BaseDiagram. I would like to automatically set BaseDiagram property when adding new entity to diagram. Default BaseDiagram value should be set ...
0
votes
1answer
133 views
Updating Child Entities Entity Framework
Hi Here here we another Entity Framework question and updating child entities.
The scenario:
I have objects called Clients that have Assessments and Weekly Assessments. Clients are created and saved ...
0
votes
2answers
65 views
Adding record using entity framework
I am using EF4 in VS2010 and I have the following code:
PatientInformation patientInformation = PatientInformation.CreatePatientInformation(3);
patientInformation.DateOfBirth = new DateTime(1983, 6, ...
1
vote
0answers
163 views
Upgrade EDMX to EF 4.0 - update model to include foreign key columns
Upgrading my ASP.NET 3.5 / Entity Framework 1.0 solution to .NET 4.0, I would like to take advantage of the foreign key columns that can be part of your EDMX model as of EF 4.0.
I tried just ...
0
votes
0answers
109 views
T4 template for EF 4.x, ObjectContext, EntityObject, database-first approach and EDMX
I'm upgrading an existing ASP.NET 3.5 webforms app to .NET 4.0 (or possibly 4.5 - not sure yet) and I'd like to upgrade the EF version, too.
As a first step, I'd like keep my visual EDMX designer and ...
1
vote
1answer
77 views
What could Entity Framework have to do with Interop.SHDocVw?
I have a project that we've recently modified. The project is written in .NET, and compiled for x64 machines. I have a DataEntities model that we've built to interact with our database. However, when ...
1
vote
1answer
107 views
EDMX for legacy code _and_ Code First for new development together in one MVC project
The situation as follows:
we have one big MVC project with database first approach on EF5.0:
ObjectContext constructor:
namespace xxx.Models
{
(...)
public partial class xxxEntities : ...
1
vote
0answers
38 views
When I check out a MVC Project that Uses EDMX I have to Hit Ctrl + S to update the model How Do i get around this when doing an automated Build
When I check out a MVC Project that Uses EDMX I have to Hit Ctrl + S to update the model before I Can build. Otherwise I get a lot of build erros. How Do i get around this when doing an automated ...
1
vote
3answers
215 views
Do I add the same table in multiple entity framework bounded context
I have a fairly big database, about 80 tables or so. So I've decided to separate the tables into bounded context instead of having all 80 tables in 1 big edmx file.
So I have bounded contexts like ...
0
votes
1answer
81 views
.NET Linq MD5 (From Column)
How i convert this SQL:
SELECT * FROM Test Where md5(field) = 'my_hash'
To LINQ?
Note:
I can't use the method (external) inside linq expression (throws)
then i can't apply a md5 method in field.
...
3
votes
1answer
80 views
entity framework model to database with indexed properties
I'm using EF 5.0 and diagram modeler (*.edmx) to create schema and generating database from model, and I was wondering if there is any way to create index on some property (only) via this modeler.
...
4
votes
1answer
145 views
Does .edmx files used in real world
I am reading in the book where author create custom context class (not using edmx file) for data access.
I wonder now.
In real world scenario what is most used method custom DbContext class or .edmx ...
0
votes
1answer
223 views
“Three tier architecture with edmx as orm” VS “MVC3 with linq to sql” which one is better !? [closed]
Our team is planning to work on a new project, so I need a suggestion please guide me.
We did our previous project in Three tier architecture using edmx in our EF and we found
it easy to code in that ...
0
votes
1answer
53 views
Entity Framework 4.0 mapping issues
I'm getting the following error when trying to run a solution using Entity Framework 4.0 and am wondering how to change the mapping settings to correct it:
Problem in mapping fragments starting at ...
0
votes
1answer
241 views
Recommendations for: The mapping of CLR type to EDM type is ambiguous because multiple CLR types match the EDM type
I have a database with over 100 dables. I decided to split the EF model into three different ones. There are several tables which appear in more than one model. After using the EF 5.X DbContext ...
0
votes
1answer
130 views
EF5 Update only one model
I'm developing an MVC4 aplication using VS2012 and EF5 for the database access.
I'm using the database first aproach, so I make the changes on the database and then on my .EDMX file I use the option ...
0
votes
0answers
50 views
How to fix false Error 6036 raised by Entity Framework in Visual Studio Error List Window
I changed my edmx file so that all EF classes are internal. Inside the classes all properties are marked as public. The project compiles, but I get false error messages in the Error List Window in ...
0
votes
1answer
96 views
How do I create an association between these 2 entities without touching the DB?
I need to create a "virtual" association between these two entities (1-*) so that I can traverse them using linq, but the problem is I cannot touch the database. I have tried to manually edit the edmx ...
1
vote
2answers
73 views
No schema encountered with 'Base' namespace when running POCO entity generator with a CSDL file which imports a namespace from another CSDL file
I'm getting this error "No schema encountered with 'Base' namespace" when running POCO entity generator with a CSDL file which imports a namespace from another CSDL file.
Both CSDL files have been ...
0
votes
1answer
87 views
MappingException Edm.String not compatable with SqlServer.varbinary
I am having a difficult time resolving a silly mapping problem. Basically what is going on is that I have a field in a sql db table that is a varbinary for the purposes of security (encryption and ...
0
votes
1answer
29 views
EDMX designer custom association
I have a problem with edmx desginer. I have one table (Comment) and one view (User). I want to add association between them, UserId in Comment. When I'm doing it I get additional column in Comment - ...
1
vote
1answer
174 views
Extending Entity Framework Model to include new class
Noob question
I'm using Entity Framework in my project, it generates the entities in the designer, like:
public partial class CLMEntities : ObjectContext
I have another class in the project that I ...
0
votes
1answer
78 views
MetadataException : connection string
I realise that this question has been asked and solved many times before here and that there are many helpful posts such as this one...http://blogs.teamb.com/craigstuntz/2010/08/13/38628/
But ...
1
vote
1answer
85 views
Any side-effects for using ProviderManifestToken=2005 on edmx -file (to support SQL Server 2005)?
In development we use SQL Server 2012, but some customers might have versions as old as 2005. In order to make the Entity Framework data models work with the older versions, the ProviderManifestToken ...
1
vote
0answers
57 views
The right usage of multiple EF 5.0 edmxs in a single solution
I'm following a database first approach in this example. Because of the manageability issue of a single edmx, I have decided to break down the single edmx to multiple edmxs.
I created a project and ...
0
votes
0answers
108 views
How create complex type for result set returned as temp table from stored procedure?
How to get Columns of a temp table which contains multiple table columns returned from stored procedure in entity framework function import?.
thanks
0
votes
1answer
169 views
Entity Framework Database First - Relationships
I think I have CodeFirst understood. Now I know database first EF design is targeted for existing databases, but if I were to quickly go in and create a new database in management studio and create ...
0
votes
2answers
93 views
Shared Entities in Entity Framework Model
I have 3 (in future possibly more) large projects that are quite different from each other however there is around 15+ tables that they all have in common (User, Role, UserPreferences, UserLog...etc). ...

