Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit a0a1d0a

Browse files
committed
Move SqlServerFileTableAttribute to SS.Interfaces
1 parent 3410308 commit a0a1d0a

File tree

2 files changed

+0
-21
lines changed

2 files changed

+0
-21
lines changed

lib/ServiceStack.Interfaces.dll

512 Bytes
Binary file not shown.

src/ServiceStack.OrmLite.SqlServer/SqlServer2012OrmLiteDialectProvider.cs

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -208,24 +208,3 @@ internal bool hasIsNullProperty(FieldDefinition fieldDef) =>
208208
isSpatialField(fieldDef) || fieldDef.FieldType.Name == "SqlHierarchyId";
209209
}
210210
}
211-
212-
213-
// TODO: Move to ServiceStack.Interfaces
214-
namespace ServiceStack.DataAnnotations
215-
{
216-
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
217-
public class SqlServerFileTableAttribute : AttributeBase
218-
{
219-
public SqlServerFileTableAttribute() { }
220-
221-
public SqlServerFileTableAttribute(string directory, string collateFileName = null)
222-
{
223-
FileTableDirectory = directory;
224-
FileTableCollateFileName = collateFileName;
225-
}
226-
227-
public string FileTableDirectory { get; internal set; }
228-
229-
public string FileTableCollateFileName { get; internal set; }
230-
}
231-
}

0 commit comments

Comments
 (0)