active questions tagged linqtosql - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T13:03:47Zhttp://stackoverflow.com/feeds/tag/linqtosqlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1895167/i-cant-see-the-extension-methods-of-linq-to-sql-in-class-library0I can't see the extension methods of LINQ to SQL in Class Library [closed]Aaron2009-12-13T00:24:20Z2009-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. // <= The extension methods don't appear in intellisense
}
}
}
</code></pre>