Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

LINQ and .NET 3.5 | Forum profile

Forum profile page for LINQ and .NET 3.5 on http://www.codeproject.com. This report page is the aggregated overview from a single forum: LINQ and .NET 3.5, located on the Message Board at http://www.codeproject.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "LINQ and .NET 3.5" on the Message Board at http://www.codeproject.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: CodeProject: Discussion Boards. Free source code and programming help - LINQ and .NET 3.5 (site profile, domain info codeproject.com)
Title: LINQ and .NET 3.5
Url: http://www.codeproject.com/script/Forums/View.a...
Users activity: 2 posts per thread
Forum activity: 9 active threads during last week
 

Posting activity on LINQ and .NET 3.5:

  Week Month 3 Months
Threads: 9 39 103
Post: 10 72 205
 

LINQ and .NET 3.5 Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
koleraba
2
user's latest post:
Linq To Xml
Published (2009-11-24 03:00:00)
That solved my problem. Thank you Eslam. Uroš
Tauseef A
1
user's latest post:
Sequental access issue
Published (2009-11-23 16:29:00)
hi guys , in n-tier there is sequental access from UI--> BLL --> DAL. but when we user linq can we say that UI can access the data source directly , it ot doext not voilate the convention ? or i am wrong some where . because we can do like that in UI Customer cus = Datacontext.gettable
Eslam Afifi
1
user's latest post:
Linq To Xml
Published (2009-11-23 21:24:00)
Using the let clause [ ^ ] your query becomes var records = from record in document.Descendants( " Variable" ) let type = Support.GetType((string)record.Element( " type" )) select new Variable { Name = (string)record.Element( " name" ), DataType = type, DefaultValue = Support. Convert ((string)record.Element( " value" ), type) };
sris 426
1
user's latest post:
Linq to validate data table
Published (2009-11-24 10:09:00)
Hi all, I have a data table with columns ID and amount.I need to check whether the amount is zero or >0. Instead of looping the whole datatable,I want to use linq here. Could any one provide the sample to achieve the task... Thanks in advance, Srinivas Mateti
Budsy
1
user's latest post:
Linq to XML speed vs MySql speed
Published (2009-11-24 20:03:00)
Has anyone benchmarked XML Linq speed compared to network'd MySql? I have a fairly big XML database here and was wondering if I might get better performance by loading it into MySql. It's the read access I'm most interested in at the moment. Yeah, I know I could mash up some test code, but I wondered what the scuttlebutt might be. Budsy
d@nish
1
user's latest post:
Linq to validate data table
Published (2009-11-25 04:30:00)
IMO this [ ^ ] is a must visit for anyone starting with LINQ.
MREcoolio
1
user's latest post:
seperate DTO's
Published (2009-11-25 16:36:00)
The way I used to do it w/ LINQ2SQL is to generate an interface on the table, for each table class in the datacontext. I would then manually go through each interface and convert it to a class. I'm not sure if someone has figured out how to automate this. After a year of so, I bought a commercial ORM from Mindscape called Lightspeed, it supports linq and generates the DTOs for me =)
Abhishek sur
1
user's latest post:
Linq to XML speed vs MySql speed
Published (2009-11-26 10:56:00)
I think MySql will be better if the size of the data is very long. Reading the entire xml file into memory and then apply LINQ will not be great compared to Database. In case of database you can select only the part you want. XML files are read totally into memory before searching.
N a v a n e e t h
1
user's latest post:
Linq to XML speed vs MySql speed
Published (2009-11-26 22:48:00)
MySQL is RDBMS system and tuned for high performance. So you will get better performance than file system storage like XML. LINQ to XML is just an abstraction over the XML manipulation classes and it has to read the nodes sequentially. So the larger your file, slower your program will be.
 

Latest active threads on LINQ and .NET 3.5::

CodeProject: Discussion Boards. Free source code and programming help
Started 5 days, 6 hours ago (2009-11-26 10:56:00)  by Abhishek sur
I think MySql will be better if the size of the data is very long. Reading the entire xml file into memory and then apply LINQ will not be great compared to Database. In case of database you can select only the part you want. XML files are read totally into memory before searching.
Thread:  Show this thread (3 posts)   Thread info: Linq to XML speed vs MySql speed Size: 427 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Linq to XML speed vs MySql speed :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 6 days ago (2009-11-25 16:36:00)  by MREcoolio
The way I used to do it w/ LINQ2SQL is to generate an interface on the table, for each table class in the datacontext. I would then manually go through each interface and convert it to a class. I'm not sure if someone has figured out how to automate this. After a year of so, I bought a commercial ORM from Mindscape called Lightspeed, it supports linq and generates the DTOs for me =)
Thread:  Show this thread (2 posts)   Thread info: seperate DTO's Size: 428 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: seperate DTO's :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 6 days, 12 hours ago (2009-11-25 04:30:00)  by d@nish
IMO this [ ^ ] is a must visit for anyone starting with LINQ.
Thread:  Show this thread (2 posts)   Thread info: Linq to validate data table Size: 271 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Linq to validate data table :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 1 week ago (2009-11-23 21:24:00)  by Eslam Afifi
Using the let clause [ ^ ] your query becomes var records = from record in document.Descendants( " Variable" ) let type = Support.GetType((string)record.Element( " type" )) select new Variable { Name = (string)record.Element( " name" ), DataType = type, DefaultValue = Support. Convert ((...
Thread:  Show this thread (3 posts)   Thread info: Linq To Xml Size: 1,162 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Linq To Xml :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 1 week, 6 days ago (2009-11-18 16:07:00)  by PunkIsNotDead
You only should get the foreign key of tableb! according to your example... unless you've selected some data of tableb like result.tableb.fieldOfTableB
Thread:  Show this thread (2 posts)   Thread info: list issue Size: 310 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: list issue :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 2 weeks, 1 day ago (2009-11-15 18:11:00)  by Mark Nischalke
Tauseef A wrote: ut its not in the case of linq ? Yes, it is still the case with Linq. Your implementation and understanding is incorrect. Adding Linq to SQL or Entity Framework does not negate a properly implemented nLayer architecture. Your presentation layer should only know about the entity objects, either via DTOs you create at the business layer or self contained Entity objects ...
Thread:  Show this thread (7 posts)   Thread info: DAL issue Size: 654 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: DAL issue :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 2 weeks, 4 days ago (2009-11-13 11:43:00)  by Abhishek sur
LINQ is Language Integrated Query. Read this Basics of LINQ & Lamda Expressions [ ^ ] I hope you will get some concept from my article.
Thread:  Show this thread (2 posts)   Thread info: lnq Size: 528 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: lnq :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 2 weeks, 4 days ago (2009-11-13 03:30:00)  by Andreas X
You are not doing it wrong. Linq is generating a delete statement for each row in the table and matches the row to delete on all columns. This is why it takes a lot of time. the ExecuteCommand is the prefered way in this scenario
Thread:  Show this thread (2 posts)   Thread info: Super Slow DeleteAllOnSubmit Size: 292 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Super Slow DeleteAllOnSubmit :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."
 

Hot threads for last week on LINQ and .NET 3.5::

LINQ and .NET 3.5
Started 5 days, 6 hours ago (2009-11-26 10:56:00)  by Abhishek sur
I think MySql will be better if the size of the data is very long. Reading the entire xml file into memory and then apply LINQ will not be great compared to Database. In case of database you can select only the part you want. XML files are read totally into memory before searching.
Thread:  Show this thread (3 posts)   Thread info: Linq to XML speed vs MySql speed Size: 427 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Linq to XML speed vs MySql speed :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."
LINQ and .NET 3.5
Re: Linq To Xml - 2 new posts
Started 1 week ago (2009-11-23 21:24:00)  by Eslam Afifi
Using the let clause [ ^ ] your query becomes var records = from record in document.Descendants( " Variable" ) let type = Support.GetType((string)record.Element( " type" )) select new Variable { Name = (string)record.Element( " name" ), DataType = type, DefaultValue = Support. Convert ((...
Thread:  Show this thread (3 posts)   Thread info: Linq To Xml Size: 1,162 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Linq To Xml :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."
LINQ and .NET 3.5
Started 6 days, 12 hours ago (2009-11-25 04:30:00)  by d@nish
IMO this [ ^ ] is a must visit for anyone starting with LINQ.
Thread:  Show this thread (2 posts)   Thread info: Linq to validate data table Size: 271 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Linq to validate data table :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."
LINQ and .NET 3.5
Re: seperate DTO's - 1 new post
Started 6 days ago (2009-11-25 16:36:00)  by MREcoolio
The way I used to do it w/ LINQ2SQL is to generate an interface on the table, for each table class in the datacontext. I would then manually go through each interface and convert it to a class. I'm not sure if someone has figured out how to automate this. After a year of so, I bought a commercial ORM from Mindscape called Lightspeed, it supports linq and generates the DTOs for me =)
Thread:  Show this thread (2 posts)   Thread info: seperate DTO's Size: 428 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: seperate DTO's :: LINQ and .NET 3.5 :: CodeProject: Discussion Boards. Free source code a..."