Tagged Questions
1
vote
2answers
36 views
How to access to views of another Controller in ASP MVC and Entity Framework
I am developing an ASP .Net MVC 3 application using C# and SQL Server 2005.
I am using also Entity Framework and Code First Method.
I have a view Index which is generated automatically using Entity ...
3
votes
1answer
55 views
Values are passing NULL when I record in the base in ASP MVC , SQL and Entity Framework
I am developing an ASP .Net MVC 3 application using C# and SQL Server 2005.
I am using also Entity Framework and Code First Method.
My problem is that the values are passing NULL when I want to ...
0
votes
1answer
30 views
Submit GridView rows back to database
I have this C# Code:
using (ContractorsEntities context = new ContractorsEntities(Properties.Settings.Default.Connection))
{
warningBindingSource.DataSource = ...
3
votes
1answer
53 views
Update the views, after updating a model
I have created a model with Name, Email, Phone no properties and also created views for create, edit, delete and index. All these are working fine.
Now I have added a property in model like Address. ...
0
votes
2answers
52 views
Location of EntityFramework T4 templates
When you do database-first or model-first (EDMX) in EntityFramework, I believe Visual Studio generates code off T4 templates, I would like to create a new out of the default and throw some ...
0
votes
0answers
64 views
Entity Framework files are not recognized in Visual Studio 2010 after installing Visual Studio 2012
I have Visual Studio 2010 Ultimate on my computer and recently I have installed Visual Studio 2012 Professional to test it out. I was going through Julie Lerman's Pluralsight course to learn Entity ...
0
votes
0answers
109 views
Model first in entity framework vs2010, create new database
I am very new to entity framework just started learning. I have been following a MCTS book to learn entity framework.
I have VS2010, sql server 2008 both of them are express editions. I have created ...
0
votes
1answer
49 views
Cloning the changes of an EF ObjectContext to another new context to save changes async safely
I am using EF 4.0 without code first, I need to make the save operation async, the problem is that the ObjectContext is not thread-safe, and my context has many objects bound to the WPF UI, I am ...
0
votes
0answers
56 views
Entity Framework not auto generating class for view
I have a project asp.net project with entity framework and when I add a new view to the model entity framework doesn't create the class for this view. I have added at least another 15 views to the ...
0
votes
1answer
103 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
1answer
80 views
Best Practices for implementing Entity Framework in an existing application with a medium size database(~100 tables, ~300sp's)
I'm working on extending/converting an existing asp.net application to using EF4.0/5.0 and i can't seem to find a consensus online what the best practices for laying out the design. My current ...
0
votes
1answer
39 views
Have to specify Assembly name for all class references
VS 2010, .NET 4.0, VB, EF 4.4
I was having issues deploying my web application to the server... was getting the error "Could not load type " when I tried running it on the server. Googling around I ...
0
votes
1answer
34 views
The number of members in the conceptual type
I am using VS 2010 with Entity Framework. I decide to create some relationships on a table. I started receiving the following message. I have been trying to find the answer and have tried some of the ...
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 ...
1
vote
2answers
96 views
Filter out results in entities C# does not contain a definition for execute
I wanted to filter out results using this command from the query, but i get this error:
Here is the code causing the error:
private void Bookings_Loaded(object sender, RoutedEventArgs e)
{
...
0
votes
0answers
36 views
Dropthings Error A valid path must be either an existing directory, an existing file with extension '.csdl', '.ssdl', or '.msl'
I am facing an issue with connectivity of DropthingsDataContext with the Database of Dropthings.
I have downloaded the recent Dropthings-2.8.2-src version of the Dropthings from:-
...
0
votes
1answer
78 views
ADO.NET - using AsQueryable() in entity framework
I'm using this generic method to query for the info from my tables :
public virtual IQueryable<TObject> All()
{
return DbSetFilterDeleted.AsQueryable();
}
but for one of my tables I need ...
0
votes
1answer
107 views
Get data using Code First and foreign key
I thought this will be something straight-forward but it's been a whole day and I still cant' find an answer. Let's get a very simple example. We have a class Post:
public class Post
{
public ...
0
votes
2answers
126 views
How to solve false “EF Power Tools: modelEntityContainerName contains characters that are not valid”?
I'm facing an issue that many already faced, with a difference: neither the SDF file name, or the path, contains invalid characters.
I've even tried with the Northwind.sdf file and Ikeep getting the ...
0
votes
1answer
169 views
A constructible type deriving from dbContext could not be found in the selected file (EF Power Tools Beta 3 + VS 2010 SP1)
I get this error every time trying to use the View Entity Data Model Function. There is nothing to be found on this issue for my constellation (VS 2010 SP1, Power Tools Beta 3). What I've already ...
0
votes
0answers
226 views
EF Code First reverse engineer unable to load EF.Utility.CS.ttinclude
I am trying to reverse engineer using EF Code First tools. The solution works perfectly on other peoples machines when doing a "Reverse Engineer". They are running the same version of Visual Studio ...
1
vote
1answer
110 views
Opening a MVC4 EF5 project created in VS 2012 in 2010
I created a project in the express edition of VS 2012, it was MVC4 using EF5 Model First with enums. I get this error when trying to run the same project now in VS 2010.
Error 1 Error 5: The ...
0
votes
1answer
181 views
Entity framework doesn't add all tables visual studio 2010
Maybe its better to start with some info. I'am using Visual Studio 2010 and Microsoft SQL server 2012 Express. So I have relationship between some tables like the standard one in simple membership ...
2
votes
1answer
126 views
Entity Framework: EF4 – update model from database doens't work
i'm using VS 2010 with EF 4.0 and i have a problem that i've searched in conteless foruns and websites but can't found an answer to my question.
I have a DB that i'm using for my final project in C# ...
4
votes
2answers
48 views
List of all entities generated from data model
How can I get a list of all Entities Type generated from a Entity data model (*.edmx)?
I already have the names of the tables from the database and an instance of the model (.edmx).
I want to have ...
4
votes
2answers
51 views
How to apply the same query to different entities?
So, I'm beggining to use EF, and I'm developing an application using it as ORM. The thing is I haven't had much time to dig into the documentation (I Plan to, in due time)and I'm kind of lost in some ...
0
votes
1answer
544 views
How to develop Mono 3 / .Net 4.5 projects with Visual Studio 2010
I need to migrate web application to Mono, and this application uses Entity Framework 4. Mono includes open sourced EF of 6th version, so I guess I must switch to EF 6 available on .Net 4.5 available ...
1
vote
1answer
108 views
Can Visual Studio nuget package manager exclude pre-release packages?
I'm using a package for generating email from Razor views caller MvcMailer. This package depends on T4Scaffolding (>= 1.0.7). T4Scaffolding in turn depends on EntityFramework (>= 4.1.10311.0).
This ...
0
votes
0answers
77 views
How to create database on Oracle 11 g
I'm new to Oracle database.
I clearlly want to know how to create a oracle database .I install Oracle Database 11g Express Edition and Create Workspace in Application Express with db username and ...
0
votes
1answer
51 views
Error while Adding rows to a table having 2 foriegn keys
I am using Entity framework 4, SQLite database with database first approach. I have attached my table structure as a snapshot.
I am able to write/ read data in the Bnb_Company and Bnb_Player tables, ...
0
votes
1answer
159 views
Entity framework code first not creating database in vs2010
I’m new to vs2010 and the entity framework (and ASP.NET MVC as well....I’m from a winforms vs2005 background) as well as the azure platform and am starting a project using these technologies soon.
...
0
votes
2answers
144 views
How can I install Entity Framework 4.2?
This used to be trivial via Nuget but now, I can only find 5.0 in Nuget. How can I specifically install version 4.2? We are trying to upgrade from 4.0 to 4.2 but aren't ready for a major upgrade to ...
1
vote
0answers
83 views
Automate the creation of Partial Classes from an entity data model
If I create an entity data model using the using the model first approach and building my model from an existing database is there a way that I could then automate the creation of partial classes to ...
1
vote
1answer
58 views
Cannot add web-api controller based on exisiting EF class
I have created a EntityFramework ORM. I try to add a new controller using a wizard;
and get the following error:
How can I solve this? I have tried to clean and rebuild, but it didn't help.
1
vote
4answers
505 views
InnerException in Entity Framework when I try add an entity
I'm trying to insert a entity into my database with Entity Framework. See below:
private void InsertarIntoDataBase()
{
Juego game = db.games.First(g => g.Id == anId);
Day d = new Day {
...
0
votes
2answers
44 views
3 MVC projects in 1 Solution
I have to build 3 MVC web applications using Entity Framework (www.company1.com www.company2.com www.company3.com). The websites will all access the same sql server database, but will be slightly ...
0
votes
3answers
958 views
Entity Framework 5 - Invalid column name - Reverse Engineer Code First
Using Entity Framework 5, Visual Studio 2010 with the Entity Framework Power Tools (Beta 2) extension.
Here is my database table structure:
I used the Reverse Engineer Code First function of the ...
0
votes
1answer
289 views
How to debug problems with The Entity Data Model Designer (Entity Framework)
I have inhereted some project which uses Entity Framework in a way which makes it hard to make there any changes. It uses QueryViews for almost all tables (cca 50 tables) and of course stored ...
0
votes
2answers
162 views
SQL Server DB that was created in Visual Studio won't open in SQL Server Management Studio
I just created a sql server compact database as part of a MVC3 project using the code first technique in conjunction with the Entity Framework. This was a success and I can connect to this new ...
-1
votes
1answer
495 views
Server Error in Application. Invalid object name 'dbo.Categories'
I am working on a Online Shopping Web Apps using ASP.NET and Entity Framework c#. The problem is that my application runs fine when I test it on my local ASP.NET Development Server, but when I host ...
0
votes
4answers
149 views
AJAX Toolkit and Listview
I am working on a web application. The process regarding the problem is that I am fetching users comments from DB using Entity Framework Model. I am using a listview to show Customers Name, Rating and ...
0
votes
1answer
98 views
Entity Framework Error
I have a little problem. I am encountering the following error each time I try update my entityset.
Unable to update the EntitySet 'ShoppingCart' because it has a
DefiningQuery and no ...
0
votes
1answer
104 views
How can i add sample data to an edmx file and display it in Visual-Studio
I am using Visual Studio 2010 and ADO.Net Entity Data Model to create my database schema. Since i am still drafting and discussing the schema i would like to be able to add example data to the ...
1
vote
2answers
971 views
Stored procedure into Entity Framework model
Can you add a stored procedure into an Entity Framework model (Model.edmx)?
I just did it in Visual Studio 2010, like this (except my stored procedure is now off the Add tab and is in the Refresh ...
1
vote
0answers
76 views
Set entity framework DDL generation language
I am using Entity Framework with Visual Studio 2012 or 2010. I am working together with colleagues who have a different language version (German) of Visual Studio installed.
Some of our models use ...
0
votes
3answers
574 views
The “X” property on “Y” could not be set to a 'null' value. You must set this property to a non-null value of type 'Int32'
When I run my application and I click a specific button I get the error:
"The "X" property on "Y" could not be set to a 'null' value. You must set this property to a non-null value of type 'Int32'."
...
0
votes
1answer
337 views
Is Entity framework support (ODAC/ODT for VS2010) in Oracle client 11.2.03 Admin. intallation?
I have 11.2.01 client installed and with that I can't use EF. I would like to have ODAC and Oracle Development Tools for Visual Studio and one option is to download ODAC from
...
0
votes
2answers
151 views
Embedded database server engine
I am looking for something that could enable my application (.Net 4.0) to access a locally hosted database without the need for a server.
If this solution supports Entity Framework, that would be the ...
0
votes
3answers
75 views
Adding new item with EF with identity column
How can I add a new entity with EF where I have Id column which is defined as identity in the database ?
I get the following error:
Cannot insert explicit value for identity column in table ...
-1
votes
1answer
58 views
Entity Framework database not showing
When I select 'add a new item' and then select 'ADO.NET Entity Data Model' and select 'Generate from database' in Visual Studio only some databases show up but other databases I have added don't?



