1
vote
2answers
17 views
ADO.NET Entity Data Model - MVC - managing one-to-many relations
Let's say that I have following situation.
I have many customers and many consultans, and each customer has attached only one consultant. So it's one-to-many relationship.
I crea …
0
votes
0answers
4 views
ado.net entity data model and mysql - problem with UTF8
I use ADO.NET Entity Data Model in ASP.NET with MySql. I tried many collocation for my databases and tables but so far diacritics (polish) characters are changed.. for example, fro …
1
vote
2answers
14 views
ADO.NET Entity Framework Association of Entities by Value Range
I have two EF entities. One has a property called HouseNumber. The other has two properties, one called StartHouseNumber and one called EndHouseNumber.
I want to create a many to …
0
votes
2answers
23 views
MVC Entity Model not showing my table
I have a database with multiple tables, and some basic relationships. Here is an example of the problem I am having:
My Database:
**Org**
ID
Name
etc
**Detail1**
ID
D1name
**O …
2
votes
2answers
86 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 …
0
votes
2answers
65 views
Visual Studio 2010 Beta 2 & ADO.NET Entity Data Model
I just installed the beta for VS2010 Ultimate and I cannot locate the ADO.NET Entity Data Model template. I was under the impression that it as installed, can someone correct this …
0
votes
2answers
31 views
How to create “embedded” SQL 2008 database file if it doesn’t exist?
I've created a database application using C#, ADO.Net and an embedded MS SQL 2008 database file (that attaches to MS SQL 2008 Express) which I created in Server Management Studio. …
0
votes
1answer
23 views
Quickly Testing Database Connectivity within the Entity Framework
[I am new to ADO.NET and the Entity Framework, so forgive me if this questions seems odd.]
In my WPF application a user can switch between different databases at run time. When t …
0
votes
1answer
14 views
FormDataEntities en.SaveChanges() Throwing Exeption
I heard about the new entity framework for .net, and decided to modify my code to use this framework, but when I try to add and delete records from the table, an Exception is throw …
0
votes
1answer
30 views
How to delete using ADO.Net Entity Framework
I am unable to delete a record from the the table using ADO.Net Entity Framework.
Debugging lets me go through the method without any errors.
Cust_DataModel.Cust_DataEntities db = …
0
votes
1answer
8 views
Is it possible to NOT map an assocation in ADO.NET entity framework
I'm working on a project that uses ADO.NET entity framework as the ORM framework for getting data in and out the database. This all works great, but there's one association that I …
0
votes
1answer
758 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 s …
0
votes
0answers
21 views
Generics and Database Access
I have the following method I can pass in a lambda expression to filter my result and then a callback method that will work on the list of results. This is just one particular tabl …
0
votes
2answers
152 views
MSDTC problem with transactions in ADO.NET Entity Framework
Hi,
in our current project we are using ADO.NET Entity Framework as data layer for the application. There are some tasks which require to run in a transaction because there's a lo …
0
votes
0answers
69 views
Where does EF store the mapping view, in MetadataWorkspace, EntityConnection or in ObjectContext and is it worth it to pregenerate views?
I am currently transitioning an application over from LINQ-to-SQL and I've been running into a problem.
LINQ-to-SQL offered a way to query any Table/Column-attributed type (which …
