I'm using LinqConnect model for my SqLite database.
There is a problem with generating property for a VARCHAR column with explicitly defined default NULL value (that is not necessary but it is not incorrect).
For example for this table:
Code: Select all
CREATE TABLE test_table (
description varchar(255) DEFAULT NULL);
Code: Select all
[Table(Name = @"""main"".test_table")]
public partial class TestTable : INotifyPropertyChanging, INotifyPropertyChanged
{
...
private string _Description = @"NULL";
...
}