Skip to content

Commit e0bbef9

Browse files
author
Marc Sallin
committed
#16: Make internal types "internal".
1 parent 628d93f commit e0bbef9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SQLite.CodeFirst/Internal/Builder/IStatementBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace SQLite.CodeFirst.Builder
44
{
5-
public interface IStatementBuilder<out TStatement>
5+
internal interface IStatementBuilder<out TStatement>
66
where TStatement : IStatement
77
{
88
TStatement BuildStatement();

SQLite.CodeFirst/Internal/Convention/SqliteForeignKeyIndexConvention.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace SQLite.CodeFirst.Convention
1717
/// This is necessary because in SQLite an index-name must be unique.
1818
/// Must be added right after the <see cref="ForeignKeyIndexConvention"/>-Convention.
1919
/// </summary>
20-
public class SqliteForeignKeyIndexConvention : IStoreModelConvention<AssociationType>
20+
internal class SqliteForeignKeyIndexConvention : IStoreModelConvention<AssociationType>
2121
{
2222
private const string IndexAnnotationName = "http://schemas.microsoft.com/ado/2013/11/edm/customannotation:Index";
2323

0 commit comments

Comments
 (0)