No announcements
Found 3699882 threads
-
0 Votes
Question about EF and a table with 10s of millions of rows.
Althought the default implementacion of EF has lazy load to get the data (J.I.T. when it is necesary), but you can force it accesing to this data.Answered | 1 Replies | 4642 Views | Created by Lavagin - Tuesday, July 28, 2009 10:26 AM | Last reply by Andoni Arroyo - Wednesday, July 29, 2009 7:22 AM -
1 Votes
Getting error of IndexOutOfRangeException in C#
I am getting error of IndexOutOfRangeException in the following code.Answered | 1 Replies | 1493 Views | Created by NirajPC - Friday, July 13, 2012 2:29 PM | Last reply by Marco Minerva - Friday, July 13, 2012 3:13 PM -
2 Votes
EF converts table to association
So, from code i create user object and also i need to create role (that exist in role table) in table UserRole to show that this user have some roles.Answered | 7 Replies | 6556 Views | Created by Freeker47 - Tuesday, July 20, 2010 9:00 AM | Last reply by Ciget - Thursday, March 24, 2011 6:08 PM -
3 Votes
Reading members of a security group randomly throws IndexOutOfRangeException
We made some changes in our code to ensure thread safety around all our calls to the graph api and we have not experienced the issue again (although ...Answered | 2 Replies | 1093 Views | Created by gazmanster - Friday, September 25, 2015 6:49 AM | Last reply by gazmanster - Thursday, October 1, 2015 5:11 AM -
0 Votes
IndexOutOfRangeException error when reading all rows from table in EF Core 2.0
User-1142747527 posted I have a Web API targetting .Net Core 2.0.Answered | 1 Replies | 262 Views | Created by Anonymous - Thursday, November 2, 2017 10:36 AM | Last reply by Anonymous - Thursday, November 2, 2017 10:42 AM -
2 Votes
EF bug?
You are scared to run a sproc from code behind file using ADO.NET when EF is doing the same thing no matter how the sproc is called via the EF backdoor, ...Answered | 9 Replies | 1886 Views | Created by Kevison - Thursday, January 15, 2015 3:53 PM | Last reply by darnold924 - Monday, January 26, 2015 9:54 PM -
0 Votes
Wpf DGV IndexOutOfRangeException There is no row at position -1
I didn't edit my code never but when I sew your replay I went to check my code .Answered | 6 Replies | 4322 Views | Created by abulwleed - Monday, January 3, 2011 3:38 PM | Last reply by Brian Lagunas - Tuesday, January 4, 2011 3:09 PM -
1 Votes
Error Configuring ADFS in AD Connect - IndexOutOfRangeException
Here is the error condition Page transition from "Credentials" ...Answered | 5 Replies | 1112 Views | Created by PhilSmol - Thursday, January 26, 2017 6:48 PM | Last reply by SadiqhAhmed-MSFT - Thursday, February 16, 2017 6:06 PM -
0 Votes
jenkins build for .net core 2.0
This can be beneficial to other community members reading this thread.Answered | 2 Replies | 1704 Views | Created by Hasan Jamal Siddiqui - Friday, September 18, 2020 8:12 PM | Last reply by Guido Franzke - Monday, September 21, 2020 5:58 AM -
1 Votes
Which .NET, EF and ASP for a new project?
I've done a reasonable amount of reading around on .NET Standard v .NET Core, watched a course on PluralSight regarding EF ...Answered | 6 Replies | 703 Views | Created by TomSimmons78 - Tuesday, September 26, 2017 5:58 AM | Last reply by cheong00 - Friday, October 27, 2017 3:51 AM -
0 Votes
Entity Framework: How to delete all rows in a table through entity framework?
We have used the above code to remove all rows from a log table.Answered | 9 Replies | 44283 Views | Created by JJChen - Wednesday, January 13, 2010 4:56 PM | Last reply by Kasimier Buchcik - Sunday, October 3, 2010 3:43 AM -
0 Votes
Count all rows for all tables in a database...
No errors but no data either.Answered | 9 Replies | 5669 Views | Created by ThadRizzi - Friday, July 23, 2010 12:29 AM | Last reply by ThadRizzi - Friday, July 23, 2010 2:24 AM -
0 Votes
delete rows with a condition from all tables
If you are sure that all tables have an id column and the column name is always ID then you can do this: exec sp_msforeachtable 'delete from ?Answered | 3 Replies | 4700 Views | Created by coolguy123SQL - Thursday, June 20, 2013 7:17 PM | Last reply by farkas.mate - Tuesday, June 25, 2013 11:31 AM -
0 Votes
Time Out Error When Table Rows Load
Hi @AusurvSurveyors, From what you describe it sound like you might be missing the correct indexes on your table to support the queries.Answered | 1 Replies | 973 Views | Created by Evan Bolin Microsoft (MSFT CSG) - Thursday, May 26, 2016 3:45 AM | Last reply by Jan Engelsberg - Tuesday, May 31, 2016 3:31 PM -
0 Votes
adding all of the rows from one table to another
My problem seemed to be that both tables had an autonumber primary key that was messing up the merge.Answered | 2 Replies | 4802 Views | Created by DeweyJ - Monday, February 23, 2009 3:50 PM | Last reply by DeweyJ - Wednesday, February 25, 2009 2:54 PM -
0 Votes
delete a row from a table
It is when I delete the current row and then try to display the table again that I get the error.Answered | 3 Replies | 4910 Views | Created by CanAnn - Tuesday, July 5, 2011 4:44 PM | Last reply by Neddy Ren - Friday, July 8, 2011 9:01 AM -
0 Votes
retrieve and pass data from EF table
This can be beneficial to other community members reading this thread.Answered | 8 Replies | 1045 Views | Created by zleug - Wednesday, August 5, 2020 1:07 AM | Last reply by DA924x - Thursday, August 6, 2020 7:26 PM -
3 Votes
dynamic SQL to list all tables in a database with row count for each table
select SCHEMA_NAME(o.schema_id) as SchemaName, o.name as ObjectName, case when o.type_desc = 'USER_TABLE' then 'TABLE' Else o.type_desc End as ...Answered | 3 Replies | 32091 Views | Created by Knot - Wednesday, August 22, 2012 2:41 AM | Last reply by Tom Cooper - Wednesday, August 22, 2012 4:42 AM -
0 Votes
Row count for all the tables in a Database?
This will give distinct count but needs more work for tables with xml, text datatypes etc create table #drc (tn sysname, ...Answered | 6 Replies | 5592 Views | Created by ronsql - Saturday, June 18, 2011 1:47 PM | Last reply by gao.seng - Friday, June 24, 2011 3:45 PM -
0 Votes
Row freezing issue with SetColumn error , row error with Data table
when ever error is set my Grid.Answered | 4 Replies | 1236 Views | Created by Shivalingaprasad G - Monday, February 1, 2016 2:56 PM | Last reply by Mike Laughlin - Tuesday, March 22, 2016 1:09 PM - Items 1 to 20 of 3699882 Next ›
No announcements