0
votes
How can I create generic datacontext with linq
If you need this level of dynamic querying, LINQ is probably the wrong technology. One of LINQ's major benefits is static typing - which is usually a plus. Misspell a column in your code and you'll …
1
vote
SqlMetal generating garbage association names
You can instruct SqlMetal to generate a DBML file:
SqlMetal /server:myserver /database:northwind /dbml:northwind.dbml /namespace:nwind
and then correct the associa …
