0
votes
1answer
26 views

Compilation error of DropDownList 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 'Application' which contain a DropDownList like this ...
1
vote
1answer
34 views

Why does primary key order matter?

I recently set up a class in an EntityFramework project which designated a couple of its members as a composite key. However, when it came to time to create the database from this it gave the error ...
0
votes
2answers
66 views

Update datetime using .NET and SQL

I have Entity Framework ObjectContext. I need to update column of type datetime. Here is my code: ObjectContext.ExecuteStoreCommand(string.Format("update MyTable set DateTimeField='{0}' where Id = ...
0
votes
0answers
18 views

Is it possible to disable the use of sp_executesql in entity framework EF 5?

We have big problem with the speed of mapped complex database view? The execution by sp_executesql is twenty times slower as the directly sql statement and the query plan is more komplex.
3
votes
1answer
47 views

Why is Entity Framework ignoring my connection string?

I have a connection string: <add name="Gini" providerName="System.Data.SqlClient" connectionString="user id=user;Password=pa55;Data Source=server;Database=gini" /> I want EF to be able to ...
-2
votes
1answer
41 views

get late employee from database using entity framework

I am working in web app and I have 2 table 1 employees, 2-log_time(emp_id:int , log_time :datetime ,log_type : string ) i use calendar to select date and i wont Retrieve employee that ...
0
votes
0answers
41 views

Dynamic Stored Procedures in .NET EF

I'm using EF 4 with .NET 4. I have a stored procedure that returns a dynamic result set based on an input parameter. Whats the best way to use EF to call this stored procedure and return the result ...
-2
votes
2answers
55 views

what is entity framework ? why should i use it ? can i use it without linq? [closed]

I have read some documents about Entity framework, so i came to know that it makes entities like our database(ORM). i tried to go deeper but i don't get satisfactory answer. i want to know why and ...
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 ...
1
vote
1answer
41 views

Mapping MVC3 model to MSSQL 2008 View using code first and database first

In SQL Server 2008 I have a view like this: CREATE VIEW products AS SELECT a.ID, a.Name, b.ID as SubID, b.Name as SubName FROM main_product as a INNER JOIN sub_product as b on a.ID = ...
0
votes
1answer
24 views

Cycles and/or Multiple Cascade Paths with Auto-Generated Linking Table

I have been using EF5 via Code First successfully so far to build out my database from my models. However, I recently ran into a (fairly) common issue of cycles/multiple cascade paths. I understand ...
0
votes
1answer
39 views

Can't execute regular sql query through Entity Framework

I'm trying to execute a long sql query through: IEnumerable<erequest> blah = db.Database.SqlQuery<erequest>().ToList(); query is displayed below for your convenience. When I exectute ...
0
votes
1answer
47 views

Access values returned by select and return SQL statements

I have a problem with SQL Server in C# and the following procedure: CREATE PROCEDURE [dbo].[TestingReturn] AS BEGIN SET NOCOUNT ON SELECT -2 AS Id RETURN -1 END How can I access return ...
3
votes
1answer
63 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
15 views

EntityFramework query error: <entityS>

In my MVC project I use EntityFramework. The entity's name is RatingSource. In the DB table is named RatingSource. I use "RatingSource" everywhere in the project, not "RatingSources" ("s" in the end). ...
0
votes
1answer
29 views

DateTime format in Entity Framework and SQL Server

I am fetching datetime from SQL Server using Entity Framework. The format in my database is 2013-01-01 00:00:00.000 where as when I get it via Entity Framework in JSON format, it is ...
1
vote
1answer
42 views

How to map result from stored procedure to object

I'm using EF for fetching data from stored procedure in MS SQL. Stored procedure is returning table. (columns have same names as properties in my object) List<MyObject> result = ...
0
votes
0answers
36 views

SQL Server 2008 R2 Express - CREATE DATABASE permission denied in database 'master' [migrated]

I've developed a desktop application using WPF and Entity Framework code-first. In my application the user can create multiple databases at run-time. But Entity Framework can't create database if ...
1
vote
2answers
38 views

DateCreated or Modified Column - Entity Framework or using triggers on SQL Server

After I read one question in attached link, I got a sense of how to set DateCreated and DateModified columns in Entity Framework and use it in my application. In the old SQL way though, the trigger ...
2
votes
2answers
48 views

Does Entity Designer support many-to-many relationships with duplicate association data?

Package A has one Desktop Y and one Monitor Z. Package B has one Desktop Y and two Monitor Z's. I want to represent that relationship in a database created by Entity Designer. There's a many-to-many ...
0
votes
0answers
15 views

Entity Framework and Isolation Level Serializable

What locks are applied when using a transaction with IsolationLevel.Serializable to apply changes to two tables that have a relationship in my edmx but do not have a foreign key constraint in the ...
0
votes
2answers
70 views

SQL Server Express 2008, Joins, and Timeout Expired Error Message

I have a stored procedure that does quite a bit of joins. The query though runs pretty fast, around 3 seconds. I just cant figure out the below error poping up every once in a while. I event cache ...
0
votes
0answers
22 views

how to generate another database in ef5

I'm using EF5 code first method on my Data layer project. I want EF5 generate another database like IfaGenerated for my integration tests. I've just renamed initial catalog from "Ifa" to IfaGenerated ...
-1
votes
1answer
40 views

Entity Framework gives me the old data although i changed them

I have a strange problem with the Entity Framework: I have a SQL Server database on a Windows Server and I access it via my app through Entity Framework. Now I changed an entry in the database, but ...
7
votes
3answers
217 views
+100

Entity Framework 5 wrong data type in query

We are using EF 5.0 as our ORM of choice in our business solution, structured in a n-layer fashion with everything decoupled and a nice composition root with ninject. Lately, we've been building a ...
0
votes
0answers
41 views

“The underlying provider failed on Open” error with one specific query

i am trying to debug my code i am getting error here in this line, var fsr = dbContext.FinalScoreReports.Where(c => c.ConsultantID == cId && c.TargetProjectID == ...
0
votes
0answers
91 views

The DELETE statement conflicted with the SAME TABLE REFERENCE constraint with Entity Framework

I have a table with a self reference where the ParentId is an FK to the ID (PK). Using EF (code-first), I've set up my relationship as follows: this.HasOptional(t => t.ParentValue) ...
3
votes
1answer
141 views

Entity Framework Migrations - Managing In Branches

I've been using Entity Framework code first migrations for a while now on a brand new project, and they've been working fine so far on a the main trunk version of the application. However, we're now ...
0
votes
0answers
70 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
1answer
49 views

Mapping database table with no primary key using fluent API

I am working on an application that has many already existing table mappings like so public DbSet<Activity> Activities { get; set; } protected override void OnModelCreating(DbModelBuilder ...
0
votes
0answers
47 views

Excel Cannot Connect to SQL Server database after Calling a C# COM DLL

I have an Excel spreadsheet which is linked to a SQL Server Express database using MS Query to display a table of transactions. To add a new transaction to the database table I'm using a COM visible ...
0
votes
0answers
25 views

DateCreated nulled out when editing

I am trying my hand at ef code first and running into issues. I have a interface IAuditable: public interface IAuditable { DateTime? DateCreated { get; set; } DateTime? DateModified { get; ...
0
votes
0answers
33 views

Exception (ProviderIncompatibleException) on transactioned WCF service icm Entity Framework / SQL Server

I created a console application that reads my messages from a msmq. When a message comes in the application picks up the message. When I make my WCF call transactioned with: ...
1
vote
0answers
67 views

The underlying provider failed on Open with winform

I created win-form application and accessing sql express database using entity framework, below is my connection string, <add name="CLDBEntities" ...
2
votes
1answer
95 views

Which one is a better data design or object model?

Overview I am designing a mechanism for generating dynamic controls in an ASP.NET MVC application that uses ADO.NET Entity Framework. However, my question has nothing to do with MVC and a little to ...
0
votes
0answers
41 views

Single DB vs Multiple DB [closed]

I've recently launched my first website, complete with Entity Framework 4.3/SQL 2008 Web Edition database. I'm now looking to add further functionality to the site, however I've got limited knowledge ...
0
votes
0answers
46 views

Updating Join table in Entity Framework

I need to design a database using entity framework as follows: The table setup is much the same as in the following question Entity Framework: Updating join tables except with a counter(int) field. ...
0
votes
1answer
39 views

Error when trying to connect to the database EF and SQL Server

I'm doing test with a new host, and I am facing a problem with the connection to the database. I already have the same project going on another hosting and running on SQL Server 2005. But this new ...
1
vote
0answers
34 views

Error connecting to SQL Server via alias from local IIS7

Just wondering if anyone has run into this before. Had a few devs look at this, and none of us can figure it out. I have an ASP.NET Web Forms app connecting to a Sql Server db via an alias using ...
0
votes
0answers
19 views

Does a Full-Text Index work well for columns with embedded code values

Using SQL Server 2012, I've got a table that currently has several hundred-thousand rows, and will grow. In this table, I've got a nvarchar(30) field that contains Medical Record Number (MRN) values. ...
2
votes
1answer
76 views

Entity Framework doesn't use users default schema

On my SQL Server I have a user called "preview" which has the default schema "preview". Even though I have this user in my connection string, the Entity Framework always uses the dbo schema. Is this ...
1
vote
1answer
148 views

Custom Entity Framework many-to-many navigation property

I have a many-to-many mapping/pivot table I had to expose as an Entity in order to model a relationship similar to the following (as per this question Model Entity Framework many-many plus shared ...
1
vote
1answer
90 views

Model Entity Framework many-many plus shared relation

In Entity Framework (model-first), I'm implementing a many-many (e.g. Composition-Anthology) relationship, with an additional relation (Composer) that must match within related sets. How can I ...
1
vote
1answer
37 views

Auto-Detect available database connection

Normally when we connect to a database, we will select the database driver type, server name, uid, password and database name. (like ms sql server ). Is it possible my c# windows form app auto detect ...
0
votes
0answers
31 views

Why is my data model and SQL generated by EF different on my web server?

This issue is so strange to me I don't even know how to explain it. Let me start by saying everything is working fine locally. The problem started when I published my app to a web server. At first ...
0
votes
2answers
61 views

sql deadlock in transaction scope

I have transaction scope and I would like to: using (var scope = new TransactionScope()) { 1) Insert row into table1 2) Select rows from table1 (incuding inserted row in step 1) 3) Insert ...
1
vote
1answer
68 views

Specified store provider cannot be found in the configuration

When I publish my ASP.NET MVC 4, EF 5.0, Code-First Project to test or production environment following exception occurs: (error 0175: The specified store provider cannot be found in the ...
2
votes
1answer
217 views

DateTime in entity Framework && DateTime in sql format returning different results

Guys i have a big problem in entity framework and DateTime. Here the problem: First with entity: When the user submit the form them those values are being create for a condicional query depending on ...
5
votes
3answers
127 views

Count or Skip(1).Any() where I want to find out if there is more than 1 record - Entity Framework

I'm not sure when but I read an article on this which indicates that the usage of Skip(1).Any() is better than Count() compassion when using Entity Framework (I may remember wrong). I'm not sure about ...
0
votes
1answer
29 views

EF many-to-many

How to build these tables for EF? First table : public class model1 { public int Id { get; set; } public string Name { get; set; } public string Description { get; set; } } Second ...

1 2 3 4 5 22