You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"To make it work you need to configure the UnitOfWorkFactory:
public static void Main(string[] argv)
{
UnitOfWorkFactory.SetFactoryMethod(CreateUow);
}
"
The confusing part is that I can't see the "CreateUow" method anywhere else in that readme, so I'm not 100% sure what that's supposed to look like. Clarification appreciated. :)
If it's...
public IUnitOfWork Create()
{ ... }
...I believe it would be helpful to rename public IUnitOfWork Create() to public IUnitOfWork CreateUow() so as to make it REALLY obvious. I hope I'm not being to pedantic here, but I hate to assume with this kind of information.
The text was updated successfully, but these errors were encountered:
Near the bottom of the ReadMe, you have;
"To make it work you need to configure the UnitOfWorkFactory:
"
The confusing part is that I can't see the "CreateUow" method anywhere else in that readme, so I'm not 100% sure what that's supposed to look like. Clarification appreciated. :)
If it's...
...I believe it would be helpful to rename
public IUnitOfWork Create()
topublic IUnitOfWork CreateUow()
so as to make it REALLY obvious. I hope I'm not being to pedantic here, but I hate to assume with this kind of information.The text was updated successfully, but these errors were encountered: