active questions tagged linqtosql - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T13:03:47Z http://stackoverflow.com/feeds/tag/linqtosql http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1895167/i-cant-see-the-extension-methods-of-linq-to-sql-in-class-library 0 I can't see the extension methods of LINQ to SQL in Class Library [closed] Aaron 2009-12-13T00:24:20Z 2009-12-13T00:29:37Z <p>Hi Everyone,</p> <p>I created a Class Library named Repository and which includes LINQ To SQL file which stores a ORM of SQL Server Database, besides that I also created another Class Library named Services which has the reference of the Repository class library and I want to use the LINQ to SQL file locating in Repository in Services but I can't see the Extension Methods but I can create an instance of the LinqToSQL in Services.</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using Repository; // This is the referred class library namespace Core { class BugListService { BBDatabaseDataContext dbContext = new BBDatabaseDataContext(); public int CreateBug(BugList bug) { dbContext.BugLists. // &lt;= The extension methods don't appear in intellisense } } } </code></pre>