Tagged Questions
1
vote
2answers
11 views
Argument Execption
Exception:
The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid.
Method where exception happened:
/// ...
1
vote
2answers
23 views
Convert sql to entity in query syntax
How can i convert the following query to entity framework in query syntax..
SELECT MIN(Date) StartDate, MAX(Date) EndDate, Title, Flag FROM
Holiday GROUP BY Title, Flag
Any help?
0
votes
0answers
19 views
EF Code First Get FK related Values without Entity
I have following Vehicle entity
class Vehicle
{
public int Id {get; set;}
public string PlatNo {get; set;}
public int VehicleTypeId {get; set;}
}
VehicleTypeId property is a FK of ...
-3
votes
3answers
72 views
Using Contains method within linq's Where clause
I've got a problem with my query.
I have two simple classes. Let's say
public class A{
public List<B> MyCollection{get; set;}
}
public class B{
public string Id;
}
//I want to do something ...
1
vote
0answers
27 views
ObjectContext inside another ObjectContext
I am working on a component factory system where ObjectContexts are automatically created depending upon some configuration rules. Each time a method is called, the component factory decides where to ...
1
vote
2answers
42 views
What's an entity in entity framework?
In the tutorials im following for learning about the entity framework, they keep mentioning entities. I often see it gets used as a synonym for the dbsets<> in the database context class, but ...
2
votes
1answer
55 views
Entity framework DBcontext add child row
As I understand, to add a child row, you can either do
parent.Children.Add(child);
or
child.Parents= parent
Then you can do myContext.SaveChanges();
Somehow the second solution doesn't do the ...
0
votes
1answer
39 views
Code First Entity Framework Adding Object
i am working with Code First Entity Framework and i am stucked at a place where i need to add a list of feature's to one object.
example :
i have the following Aggregates.
1) Plan.cs
2) Feature.cs
...
0
votes
1answer
19 views
The ObjectContext instance has been disposed
I'm using .Net 4.0 EF 4.0.
I have three tables in the database myentity, mygroup and myapplication. the myentity may belong to 1 to more mygroups and have 1 to more myapplications and mapped to the ...
0
votes
1answer
15 views
Update database using code first without using PM Console Command
I got this problem that make me mad many days. I write a console application, using code first to create a new database, and using migration to update it. It work very good. But, when I write a wcf ...
0
votes
0answers
21 views
Where are the entity DLL's stored
I seem to be missing: System.Data.Entity.ModelConfiguration.Conventions; when creating a class library for my models, where would this dll be stored? and if its not there whats the next step?
-1
votes
1answer
22 views
Whats wrong with my routes and actions?
I recently asked a question based on how to create pages based on the content table which contains the following: Title and Content. I followed the steps, to my understanding, in the answer that was ...
0
votes
0answers
20 views
ADO.NET Entity meta model : Optional tables?
I have an Entity Data Model (using sqlserver) that's shared across multiple projects in the same solution and other solutions. This model has the union of all the tables (EntitySets) required for all ...
0
votes
0answers
15 views
Entity Queries On Table Relations
I am looking to simplify a series of queries that I have, for example:
public static IEnumerable<Person> getAllAgents(int id)
{
using (var db = new LocAppContext())
{
...
0
votes
1answer
44 views
The context cannot be used while the model is being created
I'm getting a problem with my entity framework usage and think it could be because I'm using my DB context incorrectly.
Every now and then I'm seeing error messages in my log stating: "The context ...
0
votes
2answers
52 views
Entity Framework Performance - How do I get this to work fast?
I have an object that has a list of child objects, basically its an institution that has multiple departments. Departments can be disabled or enabled based on a boolean property on the department. I ...
0
votes
0answers
30 views
Models and patterns of architecture used in the Entity Framework
I have an MVC application, using Model First in the Entity Framework to access a relational database.
What I am interested in is the architectural patterns that the framework uses to work.
For ...
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 ...
0
votes
0answers
145 views
Entity Framework 5 IBM DB2 EntityException The underlying provider failed on ConnectionString
I am using Visual Studio 2012 to build a web application. The application uses webforms, Entity Framework 5 with an IBM DB2 database server. I have the latest IBM Drivers v10.1.2 installed on both my ...
1
vote
1answer
34 views
How to fully delete an entity model and connection
MVC 3 web being built in VS2012 Update 1, connected to MySQL db.
I added an ado.net entity model as usual and all was fine until I realized the auto generated classes were not updating despite this ...
0
votes
0answers
69 views
Entity Framework inheritance over different assemblies
I'm quite new to Entity Framework, but the more I worked with it, the more I actually liked it. But now my passion is at risk, as I'm struggeling with an issue that already made me crush my head ...
0
votes
1answer
167 views
Entity Framework - Join table with composite key and a primary key
I am struggling with the way entity framework handles join tables, specifically because entity framework requires that a join table has a composite key composed of the primary keys on the two related ...
0
votes
1answer
78 views
C# ef inheritance
Considering OOP it should not be possible but considerring EF and the way of inheritance works on a DB level, i am wondering if EF allows to jave to child class objects inherit from the same object at ...
0
votes
1answer
35 views
Entry Framework 4..5: Query Builder
I'm a newby to Entry Framework. I'm working though Julia Lerman's book and I'm stuck with Query Builder method. I get the following compile error:
Error 1 ...
0
votes
1answer
52 views
Mapping Entity Types to a projection
I was reading through a tutorial and they said that you shouldn't ever use an entity type to map to a projection. So something like this isnt allowed (where product is an entity created class):
from ...
0
votes
1answer
36 views
Update ICollection from a IEnumerable in the controller
I have this code in my controller:
public ActionResult SaveRecommendedUserDetails(RecommendAFriendViewModel model)
{
if (ModelState.IsValid)
{
Entities.RecommendedUser ...
0
votes
1answer
50 views
UnitOfWork - IRepository - STE
I'm trying to implement a simple 3 tier application assembled as following:
1 - DAL (it's a UnitOfWork and IRepository, with POCO's entity (entity framework T4))
2 - BLL (reference to DAL)
3 - UI ...
1
vote
2answers
112 views
How to avoid anemic domain model with business logic in the form of rules
I am designing a system that has a simple Entity Framework backed domain object that has fields I need to update based on a series of rules - I want to implement these rules progressively (in an agile ...
0
votes
1answer
31 views
Transaction for single class
I've an asp.net application which take advantage of three tier layer:
DAL -> IUnitOfWork interface which implements EntityFramework
BLL -> set of business logic class where evenry class inherits from ...
0
votes
1answer
30 views
Issue with ItemType Property in GridView?
I have a problem with GridView ItemType Property :
when I set the ItemType property in the html the metadata of the entity that set by
DataAnnotations like DisplayName,Validation are loaded and ...
0
votes
1answer
103 views
How do I establish a one to one relationship with Entity Framework Code First
I've been reading all the Google and SO pages about people who are establishing a one to one relationship in EF but it just isn't working for me.
Here is my model:
Account:
public int Id {get; ...
1
vote
1answer
142 views
Entity Framework Code First Updating with Where Clause
I am using FilteredSet to have automatically data from the current logged user of my system. It provides me a dynamic way to return data from the current user and not access other users data.
I would ...
1
vote
1answer
81 views
Linq Contains() Not supported
(from a in GetCtx().Application
where identifiers.Contains(a.os + ":" + a.osIdentifier)
select a.id).ToList();
It is giving me NotSupportedException:
...
0
votes
1answer
106 views
How to set null foreign key with entity framework 4.3.1
I'm in trouble when I remove a gallery of a post by setting although I'm sometimes accepts null null when I perform debugging, but retreat when the break point, it is not the null value how can I ...
1
vote
2answers
120 views
entity framework adding the contents of one data table to another one in the same database
How do I add the records of one data table to another with the entity framework?
With data sets its like:
private void sourceTabletransfer()
{
foreach (DataRow sourceTableRow in ...
0
votes
1answer
95 views
MVC3 and EF5: Including Child and GrandChild entities in the View
To make things simple, I have 3 entities (one to many, left to right):
COURSE -> MODULE -> CHAPTER
A course can have multiple modules and a module can have multiple chapters.
All I have in the ...
3
votes
1answer
61 views
EF5: Unused and unknown column causes problems
Ok, so I have 2 entities: Course and Industry
The industry entity is just a reference table which lists all available Industries that can be tagged to a course, to categorizing them. I put in a ...
2
votes
1answer
92 views
MVC3, Razor and EF5: Child properties not displayed
Ok, so I have a Course entity which has a many to one or zero relationship with the Industry entity. This means that a course can have a industry specified or not, for classification purposes. I ...
0
votes
0answers
29 views
Sometimes my deleted data does not seems to be executed directly with Entity Frmaework
I use Entity Framework. I need to perform an ajax delete and immediately after that an ajax get.
Sometimes, the data is 'really' deleted then the get take it into account.
Sometimes the data is not ...
3
votes
3answers
106 views
Does Linq make it more expensive to upgrade my application at a later stage? [closed]
Is using Linq make it more expensive to maintain/upgrade my projects at a later stage?
Before I would have used stored procedures which are easy to modify after the code has gone to production.
I'm ...
0
votes
1answer
55 views
Executing a raw sql command needs always the schema + tablename in sql management studio
When I am executing a SQL statement like:
Delete From [dbo].[User]
this works fine.
When I execute this statement also in my SQL Server 2012 Management Studio:
Delete From User
it does not ...
0
votes
2answers
55 views
MVC C# want my query to be able to return null elements
So I have a simple line of code that I'm using to check if the database already has data, but when it doesn't it returns an error (stating that nothing could be found in the database).
Basically I'm ...
0
votes
3answers
55 views
Is it feasible to build company specific framework that wraps NHibernate?
I heard that companies that use Java technologies, they used to build their own custom Framework that wraps Hibernate. However, is it really feasible for their .Net peers to do the same thing with ...
0
votes
1answer
94 views
Entity Framework 'Invalid Column Name' when I add columns to my table, code first
We have an existing DB, so we define the classes to map to the DB by hand. I've added a column called UserType, of type int. I add this to my class:
[Column("Usertype")]
public virtual int ...
0
votes
1answer
45 views
Application Inside Application in IIS
i have 2 projects and both uses the Entity Framework.
MyProject
MyProject.Admin
now when i depoloy to IIS in the fileSystem
i have the URL
localhost/MyProject -> this project contains all its ...
0
votes
0answers
54 views
EntityDatareader with Stored procedure only reads first column
I only get the first column, fieldcount is always 1
This with .net 3.5, stored procedure is configured as a function import and returns a collection of scalars.
var list = new List<string>();
...
0
votes
1answer
141 views
Dynamic Predicate for Selecting Different Columns of an Entity
I have a requirement to showing all or less properties of an entity in the grid based on the page mode user select. For example I have three page modes
Minimal (will show 8 properties of an entity in ...
0
votes
0answers
42 views
Delete Data using EntityCommand
I am using entity framework, wanted to perform delete with EntityCommand Object, Anyone please suggest me the syntax of the query to pass within EntityCommand.
using (EntityCommand command = new ...
0
votes
2answers
318 views
entity framework invalid column name
i'm having some more problems with entity framework.
one of them was resolved here entity framework multiple tables same name
now when i try to insert into either table bo or table bi i get the ...
0
votes
1answer
58 views
Entity FW web service updates unexposed fields to null
I have a web service called from JavaScript. JS passes an object which is later cast to an Entity object in the server. The problem is there are fields in the entity that are not present in passed ...
