A set of computer software components that programmers can use to access data and data services.
100
votes
20answers
45k views
MetadataException: Unable to load the specified metadata resource
All of a sudden I keep getting a MetadataException on instantiating my generated ObjectContext class. The connectionstring in App.Config looks correct - hasn't changed since last it worked - and I've ...
78
votes
10answers
40k views
Using MySQL with Entity Framework
Can't find anything relevant about Entity Framework/MySQL on Google so I'm hoping someone knows about it.
55
votes
2answers
4k views
Under what circumstances is an SqlConnection automatically enlisted in an ambient TransactionScope Transaction?
What does it mean for an SqlConnection to be "enlisted" in a transaction? Does it simply mean that commands I execute on the connection will participate in the transaction?
If so, under what ...
54
votes
8answers
7k views
SET NOCOUNT ON usage
Inspired by this question where there are differing views on SET NOCOUNT...
Should we use SET NOCOUNT ON for SQL Server? If not, why not?
What it does Edit 6, on 22 Jul 2011
It suppresses the ...
40
votes
4answers
2k views
Entity Framework Vote of No Confidence - relevant in .NET 4?
I'm deciding on an ORM for a big project and was determined to go for ADO.NET Entity Framework, specifically its new version that ships with .NET 4. During my search for information on EF I stumbled ...
35
votes
2answers
9k views
Entity Framework and Connection Pooling
I've recently started to use the Entity Framework 4.0 in my .NET 4.0 application and am curious about a few things relating to pooling.
Connection pooling as I know is managed by the ADO.NET data ...
34
votes
7answers
11k views
Entity Framework VS LINQ to SQL VS ADO.NET with stored procedures?
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 ...
30
votes
10answers
7k views
How can i query for null values in entity framework?
I want to execute a query like this
var result = from entry in table
where entry.something == null
select entry;
and get an IS NULL generated.
Edited:
...
28
votes
7answers
115k views
Microsoft.ACE.OLEDB.12.0 provider is not registered
I have a Visual Studio 2008 solution with two projects (a Word-Template project and a VB.Net console application for testing). Both projects reference a database project which opens a connection to ...
26
votes
5answers
14k views
C# ADO.NET: nulls and DbNull — is there more efficient syntax?
I've got a DateTime? that I'm trying to insert into a field using a DbParameter. I'm creating the parameter like so:
DbParameter datePrm = updateStmt.CreateParameter();
datePrm.ParameterName = ...
23
votes
13answers
4k views
How to write a .Net application that works with both SqlServer and Oracle (now that System.Data.OracleClient is deprecated)
see also System.Data.OracleClient namespace discontinued?
(Firstly don’t panic yet, System.Data.OracleClient is not being removed by Microsoft yet, however it is not in the client version of .net 4)
...
23
votes
8answers
3k views
Do you think it's advantageous to switch to Entity Framework? [closed]
With LINQ to SQL most likely going to not get as much active development as Entity Framework do you think it's best to switch to Entity Framework?
I've personally found EF to be very clunky and hard ...
23
votes
9answers
18k views
ADO.NET Entity vs NHibernate
So the ADO.NET Entity Framework has gotten a little bit of bad press (in the form of blog entries and a petition) but I don't want to rush to judgement. I'm limited in time for experimentation but I ...
22
votes
4answers
7k views
ADO.NET Entity Framework: Update Wizard will not add tables
I added a new ADO.Net Entity Data Model into my project and used the Update Wizard to add tables into the model. Five of the selected tables were added to the design surface. Two other tables will ...
21
votes
6answers
655 views
How can I programmatically check (parse) the validity of a TSQL statement?
I'm trying to make my integration tests more idempotent. One idea was to execute rollback after every test, the other idea was to some how programatically parse the text, similar to the green check ...
20
votes
7answers
2k views
Multiple concurrent calls to SqlCommand.BeginExecuteNonQuery using same SqlConnection
I have some working C# code that uses a SqlConnection to create temp tables (e.g., #Foo), call stored procs to fill those temp tables and return results to the C# client, use c# to perform complex ...
19
votes
6answers
18k 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 ...
19
votes
4answers
5k views
What is the recommended batch size for SqlBulkCopy?
What is the recommended batch size for SqlBulkCopy? I'm looking for a general formula I can use as a starting point for performance tuning.
18
votes
12answers
3k views
Is there anything faster than SqlDataReader in .NET?
I need to load one column of strings from table on SqlServer into Array in memory using C#.
Is there a faster way than open SqlDataReader and loop through it.
Table is large and time is critical.
...
17
votes
6answers
12k views
ADO.NET Entity Framework tutorials
Does anyone know of any good tutorials on ADO.NET Entity Framework?
There are a few useful links here at Stack OverFlow, and I've found one tutorial at Jason's DotNet Architecture Blog, but can ...
16
votes
5answers
5k views
TDD and ADO.NET Entity Framework
I've been playing with ADO.NET Entity Framework lately, and I find that it suits my needs for a project I'm developing. I also find cool its non-invasive nature.
After generating a data model from an ...
16
votes
5answers
35k views
WHERE IN (array of IDs)
I have webservice which is passed an array of ints.
I'd like to do the select statement as follows but keep getting errors. Do I need to change the array to a string?
[WebMethod]
public MiniEvent[] ...
16
votes
7answers
3k views
What are the disadvantages of Typed DataSets
I come from a world that favors building your own rather than rely on libraries and frameworks built by others. After escaping this world I have found the joy, and ease, of using such tools as Typed ...
15
votes
6answers
15k views
Check if a SQL table exists
What's the best way to check if a table exists in a Sql database in a database independant way?
I came up with:
bool exists;
const string sqlStatement = @"SELECT COUNT(*) FROM my_table";
...
14
votes
5answers
16k views
ADO.NET: How to get Return Value of a Stored Procedure
Probably an easy-to-answer question. I have this procedure:
CREATE PROCEDURE [dbo].[AccountExists]
@UserName nvarchar(16)
AS
IF EXISTS (SELECT Id FROM Account WHERE UserName=@UserName)
SELECT 1
...
14
votes
3answers
13k views
ADO.Net Entity Framework An entity object cannot be referenced by multiple instances of IEntityChangeTracker
I am trying to save my contact, which has references to ContactRelation (just the relationship of the contact, married, single, etc) and Country.
But everytime I try to save my contact, which is ...
13
votes
4answers
6k views
How do I view the SQL generated by the entity framework?
How do I view the SQL generated by entity framework ?
(In my particular case I'm using the mysql provider - if it matters)
Duplicate: ...
13
votes
2answers
8k views
ADO.NET DataRow - check for column existance
How do I check for the existence of a column in a datarow? I'm building datatables to organize some data that I've already pulled back from the db. Depending on the type of data in each row I need ...
13
votes
4answers
4k views
Entity Framework with NOLOCK
How can I use the NOLOCK function on Entity Framework? Is XML the only way to do this?
13
votes
6answers
2k views
Is there a bug in SqlDataReader.HasRows when running against SQL Server 2008?
Take a look at these two queries:
-- #1
SELECT * FROM my_table
WHERE CONTAINS(my_column, 'monkey')
-- #2
SELECT * FROM my_table
WHERE CONTAINS(my_column, 'a OR monkey') -- "a" is a noise word
...
13
votes
6answers
4k views
How to get the generated SQL-Statement from a SqlCommand-Object?
I have the following code:
Using cmd As SqlCommand = Connection.CreateCommand
cmd.CommandText = "UPDATE someTable SET Value = @Value"
cmd.CommandText &= " WHERE Id = @Id"
...
12
votes
3answers
245 views
How can I track calling code in a SQL Server trace?
I'd like to use SQL Server traces to track more context about what code is using the database. I was going to use the "Application Name" property on the connection string. That looks something like ...
12
votes
5answers
495 views
What problem is Microsoft trying to solve with all of these data access strategies?
There seems to be many different data access strategies coming out of Microsoft. There’s ‘classic’ ADO.NET, Linq2Sql, ADO.NET Entity Framework, ADO.NET Data Services, ADO.NET Dynamic Data. I’m sure ...
12
votes
9answers
3k views
Should I commit or rollback a read transaction?
I have a read query that I execute within a transaction so that I can specify the isolation level. Once the query is complete, what should I do?
Commit the transaction
Rollback the transaction
Do ...
12
votes
9answers
2k views
passing DB Connection object to methods
Was wondering if it is recomended to pass a database connection object around(to other modules) or let the method (in the other module) take care of setting it up. I am leaning toward letting the ...
11
votes
2answers
1k views
ADO.NET Entity Framework with OLE DB Access Data Source
Has anyone found a way to make the ADO.NET Entity Framework work with OLE DB or ODBC data sources? Specifically, I need to work with an Access database that for various reasons can't be upsized to ...
11
votes
4answers
3k views
How to view a DataTable while debugging
I'm just getting started using ADO.NET and DataSets and DataTables. One problem I'm having is it seems pretty hard to tell what values are in the data table when trying to debug.
What are some of the ...
11
votes
5answers
2k views
What's better: DataSet or DataReader?
I just saw this topic: http://stackoverflow.com/questions/2250/datatable-vs-dataset
but it didn't solve my doubt .. Let me explain better, I was doing connection with database and needed to show the ...
11
votes
2answers
6k views
Delete an object and all of it's related entities in Entity Framework
Does anyone know how to delete an object and all of it's related entities inside of EF without manually traversing the object graph and deleting each one?
For example, I've got SalesOrder and ...
11
votes
3answers
9k views
How to delete many-to-many relationship in Entity Framework without loading all of the data
Does anyone know how to delete many-to-many relationship in ADO.NET Entity Framework without having to load all of the data? In my case I have an entity Topic that has a property Subscriptions and I ...
11
votes
5answers
6k views
SQL: Update a row and returning a column value with 1 query
I need to update a row in a table, and get a column value from it. I can do this with
UPDATE Items SET Clicks = Clicks + 1 WHERE Id = @Id;
SELECT Name FROM Items WHERE Id = @Id
This generates 2 ...
11
votes
6answers
8k views
11
votes
4answers
3k views
How should I get started learning about ADO.NET Entity Framework?
So here I am just about to start a big project using LINQ to SQL and then I read this:
Is LINQ to SQL Truly Dead? by Jonathan Allen for InfoQ.com
Well, I don't want to be supporting LINQ to SQL ...
11
votes
3answers
1k views
Anyone using the Entity Framework *Well*?
Has anyone actually shipped an Entity Framework project that does O/R mapping into conceptual classes that are quite different from the tables in the datastore?
I mean collapse junction (M:M) tables ...
10
votes
3answers
5k views
No Entity Data Model (EDMX) Template with Visual Studio 2010 SP1 & ADO.NET Entity Framework 4.1
I'm having a lot of issues with the templates of Visual Studio 2010 SP1 & ADO.NET Entity Framework 4.1
I noticed that other people had these problems, and asked similar questions, but I don't ...
10
votes
2answers
209 views
Why does var evaluate to System.Object in “foreach (var row in table.Rows)”?
When I enter this foreach statement...
foreach (var row in table.Rows)
...the tooltip for var says class System.Object
I'm confused why it's not class System.Data.DataRow.
(In case you're ...
10
votes
3answers
6k views
Difference between Linq to Sql, Linq, Typed Datasets, ADO.NET
I been wondering about this for a while. It seems like there are so many ways now I don't know when to use what? Or if there is even a point to learn them. Like I don't know if they basically do all ...
10
votes
5answers
12k views
What are the advantages of LINQ to SQL?
I've just started using LINQ to SQL on a mid-sized project, and would like to increase my understanding of what advantages L2S offers.
One disadvantage I see is that it adds another layer of code, ...
10
votes
9answers
12k views
Defining an Entity Framework 1:1 association
I'm trying to define a 1:1 association between two entities (one maps to a table and the other to a view - using DefinedQuery) in an Entity Framework model.
When trying to define the mapping for this ...
9
votes
4answers
4k views
How to get Top 5 records in SqLite?
I have tried this which did not work.
select top 5 * from [Table_Name]