Tagged Questions
0
votes
1answer
28 views
Binding treeView from entity data model
I'm new to C#, How can I populate a treeView from an ADO.Net entity data model please?
I have 3 tables with relations in the db:
Category (idCategory, nameCategory)
subCategory (idSubCategory, ...
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.
...
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 ...
0
votes
1answer
138 views
Linq Entity Framework update query
I want to convert sql query to Ado.net Entity Framework linq query.I'm working with Mysql.
Mysql query
Update Not As n
Inner Join user As a
On a.UserId = n.Not_UserId
Set Not_Checked='0'
Where ...
0
votes
1answer
174 views
Oracle linq to entities query returning duplicated columns
I'm trying to query an Oracle DB (version 11.2.0.2.0) in a project that uses ADO.NET, compiled at .NET 4 (I would compile at .NET 4.5 if Windows XP was compatible with it), and uses linq to entities ...
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 ...
1
vote
2answers
131 views
How to to access ObjectContext objects while updating entities generated by ADO.NET
first I am very new to ADO.NET, LINQ and those data access technologies. As far as I understand for what I readed and found on internet LINQ2SQL evolved to LINQ to entities which evolved to ADO.NET. ...
0
votes
1answer
295 views
can't change connection string (ODP, Oracle, Linq to Entities)
I have a App.config connection string that connects me to my database just fine:
<add name="SFEntities" ...
0
votes
2answers
610 views
ADO.net Entities postback Gridview datasource
I am trying to bind an ADO entity query to a gridview, but each event that the gridview fires causes the page to postback. Every time the page posts back, the datasource is null and I have to bind ...
7
votes
1answer
801 views
Entity Framework 5.0 Benchmark Test
I'm doing an internship, and I've been asked to evaluate the performance changes for the new Entity Framework 5.0.
I've personally never used the Entity Framework, nor do I have any kind of big ...
0
votes
1answer
40 views
Does Linq to Entity add administration overhead for syncronization with the dbms?
I'm imagining a setup of a three-layer web app, MVC 3.0 with ADO.NET using Linq to Entity. Build is VS 2010, Server OS MS Server 2008, database MS Sql Server 2008. Language is either C# or VB.
What ...
1
vote
2answers
200 views
How do I use .NET MVC3 to generate a view model that addresses one-to-many relationships?
Technical Details
C#, ASP.NET 4, MVC 3, SQL backend, ADO.NET (edmx)
Background/Context
I have been using MVC for a few years now and know how to effectively use the pattern in .NET; however, I have ...
1
vote
3answers
1k views
Null navigation properties using OData/Entity Framework
I have a database schema (MySql) exposed as a data/OData service that is queried by my Silverlight client using Linq. Here is the model in question:
The columns Level and Application are Int values ...
0
votes
1answer
365 views
MVC 3 detached entity saving related children properly
Problem:
I need to save an updated detached EF object to the database.
The deatched entity is created through binding the base entity, then
foreach child ...
entity.children.add(child)
I ...
0
votes
2answers
90 views
Complex LINQ query
Switching to linq is getting much harder.I know I have to use Group by but I don't know how to use it in LINQ to Entities.already took me 3 hours.I have 4 Tables that are ...
1
vote
2answers
1k views
Group by and average in linq
I have 2 tables. MarkQuestion and Question.
MarkQuestion has:
IDQuestion,
IDUser,
Mark
Question has:
IDQuestion,
Text
I want to extract text of each question and average mark for each question:
I ...
0
votes
1answer
172 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 ...
4
votes
3answers
4k views
Libraries for ADO.NET to rapidly bulk insert data into a database from a .csv file?
I'd like to know if you can recommend any advanced ADO.NET libraries for working with databases.
I've discovered that LINQ-to-Entities is great for pulling data out of databases, but not at all ...
4
votes
3answers
2k views
Linq to Entities: see the resulting query (context.Log = Console.Out)
I just realized if your C# application use LINQ-TO-SQL classes to interface with the database, you can your query like this
using (DatabaseContext context = new DatabaseContext())
{
...
50
votes
5answers
27k views
How to use DbContext.Database.SqlQuery<TElement>(sql, params) with stored procedure? EF Code First CTP5
I have a stored procedure that has three parameters and I've been trying to use the following to return the results:
context.Database.SqlQuery<myEntityType>("mySpName", param1, param2, param3);
...
0
votes
1answer
198 views
Linq to ADO Entity query
I've had a fair search of some help, but I'm having a real load of trouble wrapping my head around this.
Basically I want to collapse an EntityCollection down into a String to display it with the ...
0
votes
3answers
967 views
How to do a simple Count in Linq?
I wanted to do a paging style table, but NeerDinner example fetches the entire data into a PaggingList type, and I have more than 10 000 rows to be fetched, so I skipped that part.
so I come up with ...
3
votes
1answer
379 views
ADO.NET Navigation Properties
I'm having a little problem using Navigation properties and inheritance on ADO.NET.
This is my Data Model:
First, some vocabulary:
Categoria = Category
Formulario = Form
Campo = Field
...
0
votes
1answer
260 views
LINQ/EDM cache's efficiency in a webapp
I was just learning how to use the LINQ/EDM combination to retrieve and update a simple user-thread-and-comment webapp as part of evaluating it.
When I turn on SQL Profiler, I rarely see a SQL ...
4
votes
1answer
2k views
Entity Framework vs Linq to Entities vs Linq to SQL
I read a lot articles about how to work with database in WPF .Net 4 application. As I understood, the main two technologies are:
Linq to SQL (L2S)
Entity Framework (EF)
but sometimes I also can ...
1
vote
2answers
169 views
Does LINQ to Entities expression with inner object context instance translated into sequence of SQL client-server requests?
I have ADO.NET EF expression like:
db.Table1.Select(
x => new { ..., count = db.Table2.Count(y => y.ForeignKey.ID == x.ID) })
Does I understand correctly it's translated into several SQL ...
0
votes
1answer
81 views
retrieve Mysql server time using ADO.net
I am using ADO.net and LINQ-to-Entities in VS2010 to connect to Mysql server, and I would like to know what is the current date and time on the server side.
Is there any method to do this using a ...
3
votes
4answers
572 views
.NET TDD with a Database and ADO.NET Entity Framework - Integration Tests
I'm using ADO.NET entity framework, and am using an AdventureWorks database attached to my local database server. For unit testing, what approaches have people taken to work with a database?
...
92
votes
6answers
39k views
Entity Framework VS LINQ to SQL VS ADO.NET with stored procedures? [closed]
How would you rate each of them in terms of:
Performance
Speed of development
Neat, intuitive, maintainable code
Flexibility
Overall
I like my SQL and so have always been a die-hard fan of ADO.NET ...
0
votes
1answer
125 views
Linq: the linked objects are null, why?
I have several linked tables (entities). I'm trying to get the entities using the following linq:
ObjectQuery<Location> locations = context.Location;
ObjectQuery<ProductPrice> ...
1
vote
0answers
264 views
better EdmGen2?
I'm using the microsoft EdmGen2 to generate my edmx file from my database. The tool works great, but there is one things missing - it doesn't support function. Is there a way to map all the stored ...
3
votes
1answer
953 views
Entity Framework and Link Table issue
I have a database which consists of the following:
** Table 1 **
Id (PK)
Field1
** Table 2 **
Id (PK)
Field2
** Link Table **
Table1Id (FK)
Table2Id (FK)
The problem is, I cannot access ...
0
votes
2answers
681 views
IQueryable contains any of string array
I am not shore why IQuerable limits me when I try to search database for data containing string from an array.
objectFactory.Resolve<IUserDao>().Query.
Where(t =>
...
3
votes
5answers
550 views
How do i convert this linq code to inline sql
How would I covert this query to inline sql or a stored procedure?
var a = from arow in context.post
where arow.post_id == id && arow.post_isdeleted == false
select new
{
...
1
vote
1answer
852 views
Using static data access methods with the ADO.NET Entity Framework
Hi I am using the ADO.NET entity framework for the first time and the staticcode analysis is suggesting I change the following method to a static one as below.
My question is simple, is this thread ...
2
votes
2answers
1k views
Creating Enums from Entities
I have tables named Events and Log. The Events table comprises of ID, Event description and type. And, the Log contains LogID, EventID(refers to ID from Event table), and timstamp.
I am using ...
21
votes
6answers
26k views
ADO.NET Entity Connection String for Multiple Projects
I am using multiple layer project where the DataModel hosts the ADo.NET Entity model and DataAccess layer does the validation.
However everytime I get a error like this
The specified named ...
2
votes
4answers
5k views
Ado.Net entity framework, linq: select multiples tables
I use these sentence in C# to retrieve data from tables DetalleContenido and Archivo:
var detallesContenido =
from contenido in guiaContext.Contenido
where contenido.PuntoInteres.id_punto == ...
0
votes
3answers
536 views
How do you retrieve records and all child records in one database hit in ADO.NET Entities?
I would like to make one database call to retrieve the following data, but I'm struggling to figure out what the LINQ should look like. Here's my current implementation (I know it's bad!!):
var ...
0
votes
2answers
886 views
ADO.NET Entity Framework, Northwind, and Employee.Orders > 0
So I'm trying to work on a sample app. Trying to dig into ADO.NET Entity Framework. I get an employee back using a method with LINQ like this:
public IList<Employee> FindByLastName(string ...
8
votes
5answers
2k views
How to load varbinary(max) fields only when necessary with ADO.NET Entity Framework?
I have a varbinary(max) field in one of my tables but I don't need it every time and I'm looking for a way to fetch it from the database only when necessary. I'm using ADO.NET Entity Framework. How to ...
3
votes
2answers
2k views
linq to entities inheritance query problem
I'm trying to perform a linq to entities query on a table that's inherited using Table per Type.
The problem I'm having is that I can't get at the properties on the Inhertied table only the ...
0
votes
1answer
368 views
LINQ to Entities and creating a new instance of an entity
I am trying to create a new instance of a Customer entity in our application, and I am having a few problems. This entity has several navigational properties, each of which has their own nav. ...
1
vote
1answer
571 views
Entity framework: One big model or a set of smaller models?
We been having some discussions on approaches to using the entity framework at work recently. We have a fairly large and complex n-tier web based application, which is due for a major overhaul.
The ...
1
vote
6answers
802 views
Persistence framework?
I'm trying to decide on the best strategy for accessing the database. I understand that this is a generic question and there's no a single good answer, but I will provide some guidelines on what I'm ...

