Revision 0eea575a trunk/Pithos.Core/FileState.cs

b/trunk/Pithos.Core/FileState.cs
21 21
    [ActiveRecord]
22 22
    public class FileState:ActiveRecordLinqBase<FileState>
23 23
    {
24
        private string _filePath;
25

  
24 26
        [PrimaryKey]
25
        public string FilePath { get; set; }
27
        public string FilePath
28
        {
29
            get { return _filePath; }
30
            set { _filePath = value.ToLower(); }
31
        }
26 32

  
27 33
        [Property]
28 34
        public FileOverlayStatus OverlayStatus { get; set; }

Also available in: Unified diff