Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public interface IJoinedSubclassInspector : ISubclassInspectorBase
{
IKeyInspector Key { get; }
string Check { get; }
string Schema { get; }
string TableName { get; }
new IEnumerable<IJoinedSubclassInspector> Subclasses { get; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@ public bool LazyLoad
get { return mapping.Lazy; }
}

public string Schema
{
get { return mapping.Schema; }
}

public string Name
{
get { return mapping.Name; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public interface IJoinedSubclassInstance : IJoinedSubclassInspector
new void LazyLoad();
new void Proxy(Type type);
new void Proxy<T>();
void Schema(string schema);
new void Schema(string schema);
new void SelectBeforeUpdate();
void Table(string tableName);
void Subselect(string subselect);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public IJoinedSubclassInstance Not
Proxy(typeof(T));
}

public void Schema(string schema)
public new void Schema(string schema)
{
mapping.Set(x => x.Schema, Layer.Conventions, schema);
}
Expand Down