i am having a small problem here.
The table which dbml (LinqToSql designer) is using has columns (Foreign keys), for which it generates two objectsfor the coressponding Blogs table (1:1 association) in DB lmost same,
like
Table Authors: AuthorID INT, Name varchar(20), BlogID INT
And
TABLE BLOG:
BlogID INT, Name varchar(MAX)
- Blog { string name; int ID}
- Blog1 { string name; int ID}
It appears in intellisense as well. I have even deleted and Added a new dbml, but still same results. What is going on ?