The ADO.NET Entity Framework is a set of Object-Relational-Mapping (ORM) tools for the .NET Framework, since version 3.5 SP1.
0
votes
1answer
15 views
StructureMap select multiple constructor on GenericRepository
I'm using GenericRepository pattern from https://github.com/huyrua/efprs. I just want to select constructor with DbContext as parameter. I know there's duplicate question, but solution from this ...
7
votes
2answers
129 views
How do I avoid large generated SQL queries in EF when using Include()
I'm using EF (dll version is 4.4) to query against a database. The database contains several tables with course information. When having a look what actually is sent to the db I see a massive, almost ...
0
votes
1answer
14 views
Returning multiple resultsets with dataentity framework 5
I am using ef5 and am trying to return multiple result sets with the method GetNextResult<>() however it doesn't seem to be working.
My sql sproc is:
select * from Questions
select * from Skills
...
2
votes
4answers
184 views
EF 5 Model First Partial Class Custom Constructer How To?
EF has generated for me some partial classes, each with a constructor, but it says not to touch them (example below), now if I make my own secondary partial class and I want to have a constructor that ...
0
votes
0answers
35 views
Converting a List object to a DataTable dynamically, excluding identity columns/properties
I am using Entity Framework 4, and need to be able to pass in a list of generic entities, and convert that list into a DataTable, but I want to exclude any Identity/auto increment fields from being ...
0
votes
0answers
18 views
The specified cast from a materialized 'System.Decimal' type to the 'System.Boolean' type is not valid
I have an issue with some linq causing the following errors.
The specified cast from a materialized 'System.Decimal' type to the 'System.Boolean' type is not valid.
The specified cast from a ...
-1
votes
0answers
14 views
Entity Framework - Reusing a Complex Type in the same table or in multiple tables
I have a Complex Type called PhoneNumber and trying to use it in two different columns in a table called Contact. The Contact table has HomePhone, CellPhone, and WorkPhone, and only HomePhone is ...
0
votes
1answer
12 views
Managing DbContext Lifetime in a Thick WPF Client
I know this question has been asked and discussed a lot (e.g. Here and Here and this Article). Nevertheless, i still feel confused about it. I know that DbContexts should not live for the duration of ...
0
votes
1answer
35 views
Join vs Navigation property for sub lists in Entity Framework
I have a sql statement like this:
DECLARE @destinations table(destinationId int)
INSERT INTO @destinations
VALUES (414),(416)
SELECT *
FROM GroupOrder grp (NOLOCK)
JOIN ...
3
votes
1answer
32 views
Readonly Fields or Properties
Is there a way to have either a read only Field or a Property with no setter map to a database column with Entity Framework Code First?
I found both are ignored, example:
using System;
namespace ...
0
votes
2answers
176 views
Cache data from DB using EF 4
I have an application which needs to keep data from DB in memory.
There are 5-6 tables with very few rows and the tables are updated very rarely and as application needs this data very frequently I ...
-1
votes
1answer
18 views
How to find which of the items are modified in a list when we work on client side and send it to server side in Asp.net MVC
I am working on SOA based project and i got got a situation where I am sending the whole array of object to server and then I have to see which of the objects are new and which one I have to update, ...
0
votes
0answers
23 views
Having multiple Entity Contextes across several ViewModels
I working on an appliaction where the User can edit Master Data having one 'MasterData' in a seperate Tab.
Current Situation:
When a user saves one Tab he saves the related Customer and it's ...
0
votes
1answer
22 views
How to properly mark entity already attached to context as modified?
I feel like there should be an easy answer to this, but I can't quite seem to wrap my mind around it. I have a repository that was initially generated by the MvcScaffolding tool, so it has a method ...
0
votes
0answers
26 views
How can I get Object from Table in Entity Framework
I have a database table and corresponding class in entity framework. Please tell me how to get data from database and directly set into class object. Here is my code.
It's giving an error like ...
2
votes
1answer
8 views
Entity Framework - Share Transactions across Bounded Contexts
I am working on a very large application with over 100 modules, and almost 500 tables in the database. We are converting this application to WPF/WCF using Entity Framework 4.2 Code First. Our database ...
1
vote
2answers
74 views
Multi-tenancy and connection pool using EF 6
We have developed a multi-tenant application using EF 4.3 Code First Model, where each tenant will have their own separate database. Since, we are expecting bit high number of tenants, we want to ...
0
votes
1answer
12 views
Function import with EF and Oracle
When trying to import a stored procedure from Oracle 10g into Entity Framework 4, I get the following error:
ORA-12154: TNS:could not resolve the connect identifier specified
Here are some ...
0
votes
0answers
11 views
Adding a relationship between views in Entity Framework 3.5?
My EF model mainly consists of views, but there is no relationship between them. Is it possible to setup relationships between views and how would it be done?
If I do make changes and update my ...
1
vote
2answers
47 views
Entity Framework 5 performance concerns
Right now I'm working on a pretty complex database. Our object model is designed to be mapped to the database. We're using EF 5 with POCO classes, manually generated.
Everything is working, but ...
-3
votes
1answer
37 views
TimeOut Linq Alter Web Config
How do I alter the TimeOut of Linq in my WebConfig file?
Is possible?
In code-behind I can write:
db.CommandTimeout = 3600;
Can this be done based on a WebConfig entry?
7
votes
6answers
186 views
Why I am getting different result from two almost equal expressions to get data from database using Entity Framework context
I am validating username (case-insensitive) and password (case-sensitive) from database
I am using Entity Framework 5.0 to interact with database
In the database password is
...
1
vote
2answers
55 views
Entity Framework Code First Common Database Audit Fields
I'm new to Entity Framework, in the past I've used Enterprise Library or ADO.NET directly to map models to database tables. One pattern that I've used is to put my common audit fields that appear in ...
1
vote
2answers
46 views
Collection to use with Entity Framework when seraching for single result
I followed an Entity Framework tutorial and wrote an ApplicationConfig model (this is simplified) -
public class ApplicationConfig
{
public ApplicationConfig()
{
this.Users = new ...
0
votes
1answer
8 views
Can I have a scalar property in EF 3.5 point to a function in the database for it's value?
Is it possible to have the data for a scalar property in an entity come from a function?
An example is, I have a field in my database that points is a numerical field, but that means nothing to the ...
0
votes
0answers
15 views
Trouble with a complex grandparent/parent/child relationship Entity Framework SQL Server
I'm having trouble with a relationship in Entity Framework, and I'm positive that most of the problem stems from my inability to come up with a good search phrase for google. However .. here is the ...
1
vote
1answer
68 views
Reuse connection among DbContext instances in unit test
I'm trying to setup some unit tests using EntityFramework 5, SQL Server Compact 4 and Xunit.
I'm using different context instances because I'm testing a ASP MVC app and I need to test the behavior ...
0
votes
0answers
10 views
Web.Publish and Web.Debug for asp.net authentication
Can you outline the steps required to use the Web.Publish and Web.Debug config files effectively for ASP.NET membership?
I'm using MVC 4 and entity framework using the repository pattern so I have a ...
0
votes
1answer
32 views
ModelState.IsValid - Can you validate part of a model
I've got a large view model that I'm sending back to the controller - using AJAX posts.
The model looks something like this:
public class FunkyThingsOrder
{
[Required]
public int id{get;set;}
...
0
votes
1answer
26 views
Result consisted of more than one row when executing linq query against mysql database?
When I run the following query in VS2008 with EF 3.5, I get the error:
Result consisted of more than one row
var drivers = _context.Persons
.Where(x => x.client == ...
0
votes
0answers
12 views
Layout of an edmx diagram in VS2012
I have an entity framework diagram that has been generated from my database and updated several times. Upon adding new tables the placement of them seems to be a bit random and it has led to a pretty ...
1
vote
0answers
22 views
Evaluating Entity Framework properties only works on the second time
Using code-first, I have defined a relationship:
modelBuilder.Entity<ChildObject>()
.HasRequired(child => child.ParentObject)
.WithMany()
.WillCascadeOnDelete(false);
I can ...
1
vote
4answers
2k views
The operation cannot be completed because the DbContext has been disposed error
I'm new to EF and I'm trying to use an extension method which converts from my Database type User to my info class UserInfo. I'm using database first if that makes a difference?
My code below gives ...
0
votes
1answer
17 views
How to clear many to many relationship without loading from database in EF?
I have the following entities (pocos using Entity Framework 5):
Company: Id, Name, Applications, etc.
Application: Id, Name, etc.
There's a many-to-many relationship between companies and ...
0
votes
0answers
12 views
Nested Viewmodels and Associated View
I have looked around and have seen that some people think nested viewmodels are okay and some think that they should be completely flat. My current project requires me to give a list of products and ...
5
votes
1answer
107 views
Robust billing system design. Am I going completely in the wrong direction?
I am developing a hotel registration/billing application in ASP.Net, using the entity framework. When it comes to generating the bill for the registrant, my client has a lot of wacky criteria. ...
0
votes
1answer
18 views
Entity Framework, Function Import with Return Type: None.. returns int?
I've added a Stored Procedure to my Store, which creates a Function Import in my Model, and I've set the Return Type to None, as the Stored Procedure merely does an Insert or Update.
Yet, the ...
1
vote
0answers
14 views
Entity Framework 6 Code First function mapping
I want integrate Entity Framework 6 to our system, but have problem.
1) I want to use Code First. I don’t want to use Database First *.edmx file by different reasons.
2) I use attribute mapping ...
0
votes
2answers
54 views
Entity Framework as a type checking/verification system for database code
When I read pro and con lists of using Entity Framework (or any modern ORM really), I'm surprised that the following point doesn't arise (self quote):
Using strongly-typed domain entities allows ...
0
votes
1answer
14 views
How to ensure proxies are created when using the repository pattern with entity framework?
I have this method in my SurveyController class:
public ActionResult AddProperties(int id, int[] propertyids, int page = 1)
{
var survey = _uow.SurveyRepository.Find(id);
if (propertyids == ...
0
votes
2answers
63 views
Unknown exception when updating values through entity framework?
I am getting an unknown exception, basicly the following code loops through only 2000 items but it takes a couple of minutes to hit the end opResult = uow.Commit(); and at that point it just says it ...
0
votes
1answer
48 views
Unit testing entity frameworks identity id is zero
[TestMethod()]
[Description("Policies: AddReconciliationForDevice")]
public void PL210102()
{
// arrange
IDeviceDataFactory dataFactory = new DeviceDataFactoryMock();
PoliciesLogic target = new ...
0
votes
0answers
25 views
Stored procedure mapping one to many
Is it possible to map stored procedure so it returns entities with relationships?
My query (stored procedure) returns one to many relationship:
EntityA_ID, EntityA_Field, EntityB_ID, EntityB_Field
...
6
votes
5answers
1k views
Entity splitting when key column has different names?
I'm using Entity Framework 4.3.1 Code-First and I need to split an entity between two tables. The tables have a primary key shared, and it is 1-to-1, but the columns are not named the same on each ...
0
votes
2answers
28 views
Set value to checkbox & retrieve that value in controller
I want to display all userroles in my company access, however i can do this and at the same time the selected userroleid has to be retrieved from form so as to save in database.
In View:
I have ...
0
votes
3answers
33 views
Where is EF creating my Database? If it is.
So I have SQLServerExpress 2008 R2 running, and Visual Studio 2010. I believe I have a SQL Server instance running (fig. 1). I have been informed that if I don't specify a connection string in my ...
3
votes
1answer
749 views
SQL Azure: More Intermittent Timeouts
We have a set of 5 online auction systems running on Windows Azure & SQL Azure. Each system consists of a single web worker and one or more web roles. Each system is using ASP.NET MVC 3 and Entity ...
0
votes
2answers
53 views
c# linq fill not mapping properties
I am using the Entities Framework Code First and I have two entities:
public class Product
{
public int ProductID { get; set; }
public decimal Price { get; set; }
public int ...
0
votes
1answer
25 views
How to show a list of checkbox according to a 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 and a ...
4
votes
5answers
2k views
How to get property change notifications with EF 4.x DbContext generator
I'm playing around with Entity Framework 4.3, and so I am using the DbContext Generator to create the context and entity classes.
With the default EF 4 code generator template, entity classes ...



