We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6159dc9 commit cf99c8eCopy full SHA for cf99c8e
E2eTestWebApp/Models/Person.cs
@@ -13,12 +13,11 @@ public class Person : MagicTableTool<Person>, IMagicTable<Person.DbSets>
13
{
14
public List<IMagicCompoundIndex> GetCompoundIndexes() =>
15
new List<IMagicCompoundIndex>() {
16
- CreateCompoundIndex(x => x.TestIntStable2, x => x.Name)
+ CreateCompoundIndex(x => x.TestIntStable, x => x.Name)
17
};
18
19
// Endobject when compund key contains two or more keys
20
- public IMagicCompoundKey GetKeys() =>
21
- CreateCompoundKey(x => x.TestIntStable2, x => x.TestIntStable);
+ public IMagicCompoundKey GetKeys() => CreateCompoundKey(x => x.TestIntStable);
22
23
public string GetTableName() => "Person";
24
public IndexedDbSet GetDefaultDatabase() => IndexDbContext.Client;
0 commit comments