LINQ to SQL Designer Bug

后端 未结 3 1338
不思量自难忘°
不思量自难忘° 2020-12-31 17:06

Every time that I change a value in the designer after saving it, the .designer.cs file will be deleted.

Can anyone tell me how can I fix this problem?

相关标签:
3条回答
  • 2020-12-31 17:45

    The *.designer.cs files are completely generated by designer. You should not write any your own code into this file. The classes and/or methods are partial, so you can extend/change the behaviour in the separate file.

    0 讨论(0)
  • 2020-12-31 17:53

    Move using directives in your DataContext.cs and DataContext.designer.cs files into the namespace scope.

    0 讨论(0)
  • 2020-12-31 18:04

    Don't place your own code in the designer file, instead use a separate file leveraging the partial classes concept.

    0 讨论(0)
提交回复
热议问题