Tagged Questions
The ado.net-entity-data-model tag has no wiki summary.
19
votes
6answers
18k views
ADO.NET Entity Connection String for Multiple Projects
I am using multiple layer project where the DataModel hosts the ADo.NET Entity model and DataAccess layer does the validation.
However everytime I get a error like this
The specified named ...
13
votes
1answer
2k views
Entity Framework 4: Does it make sense to create a single diagram for all entities?
I wrote a few assumptions regarding Entity Framework, then a few questions (so please correct where I am wrong). I am trying to use POCOs with EF 4.
My assumptions:
Only one data context can exist ...
13
votes
5answers
7k views
Entity Framework: Setting a Foreign Key Property
We have a table that looks roughly like this:
CREATE TABLE Lockers
{
UserID int NOT NULL PRIMARY KEY (foreign key),
LockerStyleID int (foreign key),
NameplateID int (foreign key)
}
All of ...
6
votes
1answer
2k views
Entity framework: StoreGeneratedPattern=“Computed” property problem
I have DateTime property. I need this property default value get current datetime. And then i found to set StoreGeneratedPattern="Computed" and set (getdate()) in sql. This works successfully. But i ...
6
votes
1answer
4k views
Columns of two related database tables in one ASP.NET GridView with EntityDataSource
I have two SQL Server tables with Primary Keys (PK) and a Foreign Key (FK) linking the two tables:
1) Table "Order"
OrderID, int, PK
AddressID, int, FK
...
2) Table "Address"
AddressID, int, PK
...
6
votes
1answer
2k views
How can I add constraints to an ADO.NET Entity?
I know how to mark a group of fields as primary key in ADO.NET entities but i haven't found a way to declare unique constraints or check constraints.
Is this feature missing on the designer or on the ...
6
votes
4answers
4k views
Adding a Business Layer to ADO .NET Entity Framework
I'm working on my first .NET project (.NET 3.5, ADO.NET and C#). We've built our entity models and are trying to build a clean business objects layer.
We've got our basic entity model and we want to ...
5
votes
1answer
933 views
Entity Framework - Inserting entity with multiple models and databases
I have my domain split into multiple Entity Framework models. I have some shared entities that span multiple models (named Lookup), however, these are replaced with "using" references using the ...
5
votes
4answers
303 views
Is ADO.NET Entity Framework (with ASP.NET MVC v2) a viable option when writing custom and contantly updated websites?
I've just finished going through the MvcMusicStore tutorial found here. It's an excellent tutorial with working source code. One of my favorite MVC v2 tutorials so far.
That tutorial is my first ...
4
votes
4answers
93 views
How to access associations in a LINQ query?
I'm having problems quering this (I am new to LINQ, please forgive me) and I have spent hours trawling the web. In SQL I just want to do this
SELECT c.Forname, c.Surname cg.Title, g.GroupName
...
4
votes
1answer
104 views
Entity Data Model - export to other solutions in visual studio
a newbie question here...
I've created an entity data model (.edmx) file in one project and now it's sitting there looking beautiful with complex types defined and diagrams all spaced properly..
...
4
votes
2answers
2k views
ADO.NET Entity Framework ObjectContext - Caching Question
I was wondering if it was wise to cache the Entity Framework's ObjectContext object in the Cache; will this give me issues with multiple connections at the same time that the user will experience ...
4
votes
2answers
1k views
Pros and cons for using ADO.Net entity model
HI
What are the pros and cons for using ADO.NET entity model as a data layer? And should i use LINQ if i'm going to use this technology?
Thanks
4
votes
3answers
8k views
Can SQL Server views have primary and foreign keys?
Is it possible to define primary and foreign keys for database Views in Microsoft SQL Server Management Studio? How?
I'm trying to create an ADO.NET Entity Data Model to read from four old, ...
3
votes
4answers
76 views
ASP.NET MVC and ADO.NET Entity Framework
I have a problem that I cannot solve without some advice. I'm developing an ASP.NET MVC application and I'm using ADO.NET EF to connect to the database. My problem is that I don't know if business ...
3
votes
5answers
6k views
References for DBContext, DBSet<> in Entity Framework
I am trying to use ADO.Net Codefirst feature of latest Entity Framework 4.0. As part of that I have installed Entity Framework CTP 4 from Microsft and using Scott's tutorial to create the model ...
3
votes
1answer
380 views
What is “it” in EntityDataSource's select property?
For example :
<asp:EntityDataSource ID="EntityDataSource2" runat="server"
ConnectionString="name=AdventureWorksEntities"
DefaultContainerName="AdventureWorksEntities"
...
3
votes
1answer
374 views
Trouble updating self-tracking entities
I'm using self-tracking entities in a WCF client-server application. My WCF service returns various entities, and these can be updated using corresponding Update methods.
This worked well for a ...
3
votes
3answers
60 views
How do i get the top 5 items in a database based on the occurence of a particluar field?
Using Ado.Net Entity framework, I am trying to get the 'top 3' items in a table based on the amount of times they appear in a table.
For example:
Table:
basket_to_product_id | basket_id | product_id
...
3
votes
1answer
232 views
Update Database from Entity Model without losing content
My question's title should tell you what I am asking about.
Is there any way to update my database from an entity model without losing the inserted content?
I can't be bothered copying all this ...
3
votes
2answers
1k views
ADO Entity Framework creating unwanted Entity Key
I need to use tables from a DB which I cannot alter (using linked server).
So part of my schema is a view on these table and I cannot create an FK in my DB.
When I come to creating the association in ...
2
votes
1answer
107 views
How do I pass a connection string to the constructor of a database-first DBContext with Entity Framework 4.1?
For various reasons I would like to not store the connection string for my Entity Framework DB model in one of the various .config files. (I am using the latest and greatest DBContext API with the ...
2
votes
1answer
54 views
WCF Service with version
I am new on working with WCF service, I am using ADO.Net Entity Data Model, Name it -> DogModel.edmx.
where the Dogs table has ID,Name and Age. It's working fine. but, i wanted to understand the ...
2
votes
2answers
140 views
Exposing Entities through WCF
I have a WCF that uses a ADO.NET Entity Data Model to access SQL Server.
To insert a new row in a table with seven columns I'm using a WCF method.
I think send seven parameters it's too much, so I ...
2
votes
1answer
1k views
Entity framework 4.0, adding SQL Server View which contains no primary key
I am using Entity framework 4.0, C# 4.0, .Net 2010 and SQL Server 2008 R2. I have created following View in my SQL Server database.
create view viewGetMember as
select distinct
row_number() over ...
2
votes
1answer
453 views
Circular References and WCF
I have generated my POCO entities using POCO Generator, I have more than 150+ tables in my database.
I am sharing POCO entities all across the application layers including the client. I have disabled ...
2
votes
3answers
578 views
ADO.NET Entity Framework SaveChanges is not working
I have a .NET 4 WinForms app that uses the ADO.NET Entity Framework. Some code that was working perfectly has decided to stop working and although I've tried to figure out what changed that could ...
2
votes
1answer
849 views
Problems with EDM associations
I'm making an OData service and using an EDM to map the structure of my database and specify associations between tables and create Navigation Properties.
I've imported my tables into the EDM using ...
2
votes
1answer
642 views
ADO.NET Entity Framework - Composite primary key CRUD
i have following entities
as you see BudgetPost has a composite primary key which is a foreign keys to entities Category and Budget. My question is what is the best way to make CRUD? Is there any ...
2
votes
4answers
134 views
What is Linq to Entities?
There are so many terms and it is getting hard to learn the thing you are after because of the noise.
Is Linq to Entities just the practice of using Linq queries against the entities generated by the ...
2
votes
2answers
136 views
ADO.Net Entity Model - Is there a dialog for selecting the database?
I am looking for the standard dialog that will allow a user to create a database, connect to an existing database, select the database, test connection, etc.. and create the connection string from ...
2
votes
1answer
861 views
Changing the Name of the Connection String that Entity Framework Uses
How do you change the name of the connection string that Entity Framework models are bound to by default?
Let's say I create an Entity Framework data model named "Model1.edmx" by pointing it to a ...
2
votes
3answers
685 views
ASP.NET MVC View Model with LINQ To Entities
Let's say I create a query result
var query = from a in tblXYZ join c in tblABC on a.id = b.id select new {a.x, b.x};
What's the best way to pass that into a view? Should I create a new object and ...
2
votes
1answer
481 views
Update A Collection With Entity Framework
I have a detached set of client objects that I'd like to update (I know they already exist in the db by primary key). Now I want to update them to the database. Knowing I need to query them first, I ...
2
votes
3answers
691 views
ASP.NET MVC with Model in Separate Assembly
I currently have a .NET solution I'm developing that involves several sub-projects, including an ASP.NET MVC project. My model has been separated into a separate assembly because I need to use it from ...
2
votes
1answer
468 views
How to create an Entity Data Model for inherited generic types?
I have no clue how i can get an existing object structure based on the following classes (simplified) into a database using Entity Framework (EF is a constraint, i have to use it).
public abstract ...
2
votes
6answers
1k views
Should I create a ADO.NET Entity Data Model for each table, or one for my entire database?
Are you supposed to use one ADO.NET Entity Data Model for each table? Or one for your entire database where relationships are also routed, etc...
2
votes
2answers
634 views
Entity Sql for a Many to Many relationship
Consider two tables Bill and Product with a many to many relationship. How do you get all the bills for a particular product using Entity Sql?
2
votes
1answer
2k views
How to get to Foreign keys in the ADO.NET entity model?
I have 3 tables (and corresponding entities in the entity model)
Game:
Id - primay key
... other columns
Player:
Id - primary key
... other columns
GamePlayer (a player can participate in many ...
2
votes
1answer
304 views
ADO.NET Data Services
I'm looking at using ADO.NET Data Services with silverlight. I've been looking at the
Data Model and Data Service Implementations (ADO.NET Data Services/Silverlight) topic on msdn. In their ...
1
vote
1answer
46 views
LINQ to Entities - WHERE clause to exclude Partially Shipped Orders in my example
I have an Order table. An Order can have multiple items in it, with each item shipping at different times. I want to get the list of all Orders which excludes partially shipped or orders. In other ...
1
vote
1answer
29 views
Can't add tables in Entity Model without Primary key
I have a problem in using Entity data model. I'm unable to add a table in entity model that has no primary key. The same situation is with the table that has composite key.
1
vote
1answer
85 views
how to use postgresql with ado.net entity framework in asp.net mvc 2
In my current project, we are using visual studio 2008, sql server 2008, mvc 2 with ado.net entity framework (ado.net entity data model), linq and developing a web application. This application ...
1
vote
1answer
147 views
MVC3 with Npgsql and Entity Framework and .Net Framework 4
Well I would like to know if NpgSQL supports .NET framework 4 with EntityFramework, as I tried to use it with framework 4 and Microsoft.Data.Entity.CTP (code first approach) in my MVC3 application and ...
1
vote
2answers
78 views
Fastest way to collect data from db?
Work on C#.In my application several time need to select\collect datafrom DB.Fro this task I do the bellow step
1)Write SP
2)Execute the Sp
3)Fill result to Generic collection(ORM)
4)By the ...
1
vote
1answer
36 views
Is there a way to accomplish cascading copies of Entities in EntityFramework?
Suppose I have a table "Client" and a table "Contact". If I wanted to copy a Client row into my database along with new entries for Contacts (I don't want pointers to the already existing table) how ...
1
vote
1answer
156 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
1answer
156 views
Adding a child object before inserting the parent object and child object
I worked through the Nerd Dinner application. In the Create action method they have the following code:
NerdIdentity nerd = (NerdIdentity)User.Identity;
dinner.HostedById = nerd.Name;
...
1
vote
1answer
96 views
What's the difference between property Entity Reference and property in Entity Data Model?
I have three tables structure like following
AppUser User App
********* ****** ******
AppUserId UserId AppId
...
1
vote
1answer
95 views
What steps are needed to use an Entity Framework model with a MySQL server?
I've added and designed an ADO.NET Entity Data Model (.edmx) and have generated the corresponding DDL Script (.edmx.sql). When I was using SQL Server 2008, all I had to do was connect to it via the ...