LINQ to SQL table naming
Posted
by Ivo
on Stack Overflow
See other posts from Stack Overflow
or by Ivo
Published on 2010-05-06T09:43:12Z
Indexed on
2010/05/06
9:48 UTC
Read the original article
Hit count: 211
linq-to-sql
|override
I am using VS2010 and C#
When I map/select my database tables with LINQ to SQL I have to option to change the "member" propery, but when i delete the table (because I changed something in the schema for example) and add it again the member value gets "reset". Is it possible to set/override this member programmaticly, so that I dont have to change it by hand everytime
I mean the member option of
'<'Table Name="dbo.table1" Member="table1">
© Stack Overflow or respective owner