Hello, I tried to convert
ctiveRecordStarter.ModelsCreated+=delegate(ActiveRecordModelCollection models, IConfigurationSource source)
{
foreach (ActiveRecordModel model in models)
{
if(model.Type == typeof(User))
{
model.ActiveRecordAtt.Table = "MyUsers";
}
}
};
in Vb.Net.
The conversion "works" but the resulting code is wrong.