The program crashes if I use LINQ2SQL.
I have a classes linked to DB via LINQ2SQL. Visual Studio generates code for this classes, so I cannot mark it with attribute [NotObfuscate].
Here is example (from file *.designer.cs):
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.DataCrew")]
public partial class DataCrew : INotifyPropertyChanging, INotifyPropertyChanged
{
private System.Guid _Id;
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="UniqueIdentifier NOT NULL", IsPrimaryKey=true)]
public System.Guid Id
{
get { return this._Id; }
set { ... }
}
...
}
Any ideas to solve problem?