Tagged Questions

0
votes
3answers
35 views

Mark constructor as __explicitly__ requiring an object type

I have a constructor that accepts an object of type Material: SomeClass::SomeClass( const Material& mat ) ; However, Material allows construction by a Vector: Material::Material( const ...
0
votes
3answers
500 views

How to specify which columns can be returned from linq to sql query

I'm trying to only return a few columns from a linq to sql query but if I do, it throws the exception: Explicit construction of entity type 'InVision.Data.Employee' in query is not allowed Here's ...