Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / database / SQL-Server

Solution to annoying error 0029 - Cannot convert type 'T' to 'System.Data.Linq.Link'

0.00/5 (No votes)
29 Aug 2011CPOL 13.3K  
Finally found a solution to the annoying LINQ to SQL dbml error: CS0029 : Cannot implicitly convert type 'int' to 'System.Data.Linq.Link'.

I've been frustrated for a while about this...


SQL dbml error: CS0029 : Cannot implicitly convert type 'int' to 'System.Data.Linq.Link<int>'

Every time I change the DBML file, some errors appeared in the generated code... then I had to correct the problem in the code manually..... (the link fields needed '.Value' added to the assigned variable).


No more, me says - finally stopped being lazy and checked what the problematic fields had in common and a few seconds later, all was calm, and error free compilations were ahead.


Solution: Set 'Delay Loaded' property of the problematic field to 'False'. All done!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)