Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
CommandBehavior.SchemaOnly
Message
 
 
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 4.0
OS:
Windows 7
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01579375
Message ID:
01579446
Views:
36
>>Viv,
>>
>>After I switched to List and Linq, the performance is 10 times slower than it was :( The procedure used to execute in ~800 ms. Now it executes in 8000 ms.
>
>As John says, must be something else going on. Linq should be faster then a coded iteration....

Right, I bet the problem is here with the CAST (that's what I was getting yesterday night)
 columns = (from DataRow r in reader.GetSchemaTable().AsEnumerable()
                                                  select new ColumnSchema
                                                      {
                                                          ColumnName = (String) r["ColumnName"],
                                                          ColumnSize = (Int32) r["ColumnSize"],
                                                          DbType = (SqlDbType) r["ProviderType"],
                                                          DataType = reader.GetFieldType((int)r["ColumnOrdinal"]),
                                                          Precision = (Int16) r["NumericPrecision"],
                                                          Scale = (Int16) r["NumericScale"],
                                                          IsIdentity = (Boolean) r["IsIdentity"]
                                                      }).ToList();
I am going to debug it in a few minutes and see what needs to be adjusted.
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform