Tagged Questions
0
votes
1answer
24 views
ADO.NET DbContext Generator template missing
My ADO.NET DbContext Generator is missing in VS 2012. Only the EF 5.x DbContext Generator appears there.
Do I need to install EF 4.1 to get ADO.NET DbContext Generator?
1
vote
1answer
34 views
Join 3 tables in listview ado.net webapplication entity framework
I am new to both ado.net and the entity framework. I am working on a web application with a login, and an administrator panel using ado.net, SQL server and the Entity Framework.
In the administrator ...
0
votes
1answer
18 views
Why does Visual Studio not add stored procedures to data structure on update?
I've noticed recently that if I add a stored procedure to an existing ADO.NET entity data model through the GUI's "Update model from database..." that it does not generate the code to be able to ...
0
votes
1answer
60 views
Entity Framework Stored Procedure with Multiple Record Set not accepting my parameter
I'm using Microsofts suggested solution for using Entity Framework to read multiple record sets from a stored procedure but added a small snippet to use parameters and it's not working. I've had a ...
0
votes
0answers
40 views
MVC 4 ADO.net DatabaseFirst working with database
I am writing project on ASP.NET MVC 4. The database for this project was not originally designed, and the modification or addition of new tables in the database is done campaign work. I use ADO.NET EF ...
0
votes
0answers
66 views
Entity Framework mapping of object containing list of same objects
Currently in my code I am doing something like this
public class Subject
{
private List<Subject> _prerequisites;
}
A subject can have many prerequisites (which are also subjects), and ...
0
votes
0answers
34 views
Including child entity ADO.net EF, LinqToEntities
I'm trying to get all my child entities to get loaded in the same query as the "master" table, instead of every property loads one by one.
It's an ADO.net database model connected to SQL Server 2008.
...
0
votes
1answer
94 views
Use Stored Procedure with Entity Framework to select child objects in parent entity
If I'm using Entity Framework and I have a parent table with a one to many relationship with a child table, and I want to use a stored procedure to return the parent's children, would I add a new ...
0
votes
3answers
36 views
Error Entity Framework Database Changed
I have started with ASP.NET MVC and the Entity Framework recently.
With an existing Database, I tried to map my classes to the database tables. Without success.
Let me show you my database tables:
...
1
vote
1answer
227 views
Lightswitch is slow, ADO.NET Entity Framework/Domain Service/WCF RIA Service
I'm developing an Lighswitch application in VS2012 with an external SQL Server 2008. I'm using a WCF RIA Service to fetch my data, using these techniques: ...
0
votes
1answer
34 views
Creating a development copy of MVC project
I've created an ADO.NET, MVC4, EF5 project which has a relationship between an entity and the built in Membership provider's User.
I have cloned (using git) my repository to an external server and ...
0
votes
1answer
31 views
How refresh procedures of DBContext class in my EF model? (ASP.NET + ADO EDM)
Hello!
After create .edmx from database i added to DB more stored procedures. After that i opened model diagram and press "Update model from database", choosed this procedures. But i can't use them ...
0
votes
0answers
15 views
How to configure DbProviderFactories from code?
I don't want to configure my database during runtime in code. There is a solution in this question, but I don't like the side-effects of overthrowing the Western Civilization. Is there a better way to ...
0
votes
0answers
44 views
Entity Framework - I can't insert enties where i have association One - to - Many
I just make desktop application with Entity Framework 4.0 and i using Sql server Compact 3.5. I have few Entities in my example Driver and Bus. Every Driver was assigned to one Bus, but every Bus can ...
3
votes
3answers
1k views
Is repository pattern only to be used with Entity Framework?
I have been using Entity Framework and the repository pattern for some time now.
I was asked the other day to write a data layer without using Entity Framework, just plain old ADO.NET. I was ...
2
votes
2answers
77 views
What is happening behind EF SaveChanges()
Assume that I have a domain object which has association with couple of other entities (ofcourse mapped to multiple tables). And I made changes in master and associated entities. Naturally EF has to ...
0
votes
0answers
67 views
EntityDataSource Control in Windows Form
I am creating a windows form application and ADO.Net Entity Framework.
I am trying to get EntityDataSource Control in my toolbar but fail to do so.
Please can anyone guide me in doing so.
I am using ...
0
votes
1answer
140 views
ADO.NET POCO with SQLite database - alter table instead of drop table
relating to this msdn sample I've build a application which generates the database from a model. Now I think about the fact that I have a filled database and don't want to drop all tables because of ...
0
votes
1answer
96 views
Written transfer script for DataBase data and File copying
I know this is a bit general question for the criteria of SO but I've read a couple of articles on similar topics and everybody says "This is a scratch work" but the more I think of a way to do it the ...
0
votes
1answer
28 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
311 views
SqlBulkCopy Multiple Tables Insert under single Transaction OR Bulk Insert Operation between Entity Framework and Classic Ado.net
I have two tables which need to be inserted when my application run.
Let's say that I have tables as followed
tbl_FirstTable and tbl_SecondTable
My problem is data volume.
I need to insert over ...
1
vote
2answers
55 views
How to retrieve different object types from IQueryable
I am using Entity Framework 5 code first. I have the following query that returns 2 different objects:
var query = (from s in DatabaseContext.Servers
join c in ...
1
vote
1answer
332 views
Entity framework code first convert between class boolean and column integer
I am using Entity Framework 5 code first. My table has a column called Active and its datatype is of type int. The values that are stored in Active are 0, 1 and null.
I have a class that I need to ...
1
vote
1answer
444 views
Entity framework code first inner join with no primary foreign key relationship
I am using Entity Framework 5 code first. I am trying to setup an inner join between 2 tables and I am not sure how to go about this. The 2 tables have no primary key/foreign key association, but ...
0
votes
1answer
32 views
What part does the .WithRequired play in an EF Fluent API?
If I have the following objects:
public class Application
{
public int ApplicationId { get; set; }
public string Name { get; set; }
public virtual ICollection<TestAccount> ...
3
votes
2answers
271 views
Performance analyze ADO.NET and Entity Framework
Which one gives better performance? ADO.NET or Entity Framework.
These are the two method I want to analyze.
ADO.NET Test Method
public void ADOTest()
{
Stopwatch stopwatch = ...
0
votes
2answers
220 views
entity framework vs ado.net [closed]
i want to develop a big web application like a virtual society network (high traffic network). i want to use mvc3 razor on .net framework 4.
but i can not decide which one of these technologies is ...
1
vote
1answer
25 views
Table Not Generated Using CodeFirst
I am trying to generate database using CodeFirst but a table is not being generated.
Class Model Relation: (-> means Inherited By)
EntityBase -> Company -> Customer
FluentAPI Config:
...
0
votes
1answer
110 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
1answer
76 views
Sharing oracle transaction between Entity Framework and Oracle Client
I'm working with a legacy application that accesses an oracle database through System.Data.OracleClient using an OracleTransaction like so:
Public Sub ExecuteOracleSql(ByVal sql As String)
...
1
vote
1answer
144 views
Cant Map SYS_REFCURSOR in Entity Framework
I am trying to access a Stored procedure on Oracle 11g through Entity Framework. I can access stored procedures which returns scalars and those returns correct value. But when using SYS_REFCURSOR for ...
0
votes
1answer
113 views
Why isn't AutoDetectChangesEnabled set to false by default?
I was wondering why the AutoDetectChangesEnabled property on the DbContext is set to false by default.
I want to bulk insert into my context and as you might know turning the auto-detection to false ...
0
votes
1answer
155 views
How to configure multiple object sets per type in Entity Framework code first
I am using Entity Framework 5 code first. In my database I have 2 tables, AvailPayPeriods and AvailPayPeriodsWeekly. They both look the same:
Period datetime not null
Because these 2 tables are ...
1
vote
0answers
96 views
How to use Postgresql Database in Silverlight application?
i'am trying to use Entity Framework with Postgresql Database in my Silverlight application ,for that i am using npgsql data provider .
fowlowing this link i registered Npgsql and Mono.Security in the ...
2
votes
0answers
158 views
Order by child records using dynamic field with entity framework
I am interested in sorting a query using entity framework and am having trouble sorting using a dynamic order by expression,
I have a parent record (DatasetRecord) with a one to many relationship ...
0
votes
2answers
176 views
ASP.NET web application does not run
I have made a web application in visual studio 2010 professional using .net framework 4 as the target framework. The database is placed inside the APP_DATA folder with an ADO.net connection for the ...
0
votes
2answers
81 views
PostgreSql or SQL Server 2008 R2 should be use with .Net application using entity framework?
I have a database in PostgreSQL with millions of records and I have to develop a website that will use this database using Entity Framework (using dotnetConnect for PostgreSQL driver in case of ...
0
votes
1answer
15 views
Create EF Provider for a new database provider
I would like to create a EF provider for a relatively new database provider like DB2. However I am unable to find any useful documentation/tutorials related to it.
There are some articles in ADO.Net ...
0
votes
2answers
773 views
Entity Framework 6 + SQLite
I'm trying to use EF6 alpha and SQLite 1.0.66.0
My .config file:
<connectionStrings>
<add connectionString="data source=:memory:;" name="TestDbContext" ...
1
vote
0answers
65 views
Remove relationship in a many-to-many relationship using a DataServiceCollection
I have a mysql database that uses a many-to-many relationship. My schema looks like this:
I have a table "relations" that does the mapping between the two. It has 2 columns : layout_ID and graph_ID ...
3
votes
2answers
344 views
ADO.Net Entity Framework Transactions
I want to ask which is the right way to use transactions in ADO.Net Entity Framework (call,rollback,commit) ? I have this code, but this give me exception
"Invalid operation. The connection is ...
1
vote
1answer
30 views
mysql.data conflict something in my entity framework project
I'm using MySQL database in my Ado.Net project. So I am using entity framework model first. It is good but when i want to add "mysql.data" (which i get from mysql web site named mysql data connector) ...
1
vote
1answer
372 views
ADO.NET Entity Data Model (Entity object)
I have entity instance(north)
NorthdatabaseEntity north = new NorthdatabaseEntity()
The problem is that i don't have access to ObjectContext methods. I tried to call them with object "north" but i ...
0
votes
1answer
415 views
Equivalent of ObjectContext.AddObject(entityName, entity) on DbContext
I upgraded an old project started in ef4 but now I migrated it to ef5.
This is the old code:
protected void SaveEntity<T>(T entity)
{
using (DocsManagerContainer context = new ...
2
votes
1answer
285 views
Entity Framework: Updating join tables
I have following table setup:
Order (ID)
Product (ID) [where ProductID 1 and 2 already exist]
OrderProduct (OrderId, ProductID) [two keys FK'ng to Order and Product tables]
And I'am trying to add ...
0
votes
1answer
129 views
Does Entity Framework + System.Data.SQLite provide a Database changed from outside listener / event?
Is there a way to get notified, when the database is newer than the DbContext of EF?
In my case I develop an application that can be installed on several computers. They use the same Database. Since ...
0
votes
1answer
188 views
Debug / Show queries of SQLite (System.Data.SQLite) when used as provider for Entity Framework?
I use Microsoft Entity Framework with a SQLite Database. I am having a really hard time when it comes to debugging.
Right now I only get this in my Output Windows after I called the ...
0
votes
1answer
344 views
ADO.NET Entity Data Model auto generated code violates Code Analysis CA2214
In a MVC 3 solution, under VS 2012, it sounds strange that you receive such message after Running Code Analysis:
It is strange because the class which is mentioned in the "DON'T" analysis was ...
3
votes
1answer
221 views
using same transaction for EntityFramework and ado.net stored procedure
I am trying to integrate two different pieces of code into using the same transaction. One is Entity Framework on Oracle (using odp.net as driver) and the other is using standard ado.net using ...
0
votes
0answers
121 views
Calling function in where clause with user defined data
I've got the following problem with oracle database and entity framework in a asp.net mvc environment:
Here is a example sql statement:
SELECT * FROM user.tablename a WHERE ...




