There is no Distinct() method syntax in the language integrated query syntax. The closest you could do would be to move the current call:
var q = (from c in tbl
select c.TABLE_TYPE).Distinct();
There is no Distinct() method syntax in the language integrated query syntax. The closest you could do would be to move the current call:
var q = (from c in tbl
select c.TABLE_TYPE).Distinct();