URF.NET
URF.NET copied to clipboard
Unit of Work & Repositories Framework - .NET 4.x
there is any other sample more than https://github.com/urfnet/URF.NET/tree/master/main/Sample/Northwind.Web?
Perhaps I am simply missing something obvious, but I am unable to see a way to perform a simple GroupBy on these generic repositories that will occur at the SQL...
I am unable to insert when there is one or more owned entities (no nested entities). It's working with DBContext. **Using:** - .NET Core SDK 3.0.100-preview3-010431 - Microsoft.EntityFrameworkCore 3.0.0-preview3.19153.1 **Exception:**...
How to add tenantId to your queries automatically with odata. ``` public override IQueryable ApplyQuery(IQueryable queryable, ODataQueryOptions queryOptions) { return base.ApplyQuery(queryable, queryOptions); } ```
Hi, I'm running Unit Test and can't run all test cases due to deadlock in Repository Tests. Below is the screenshot of code casing deadlock.    
Converting from MS Test to XUnit for overall better .NET testing framework, API's as well as X-Plat compatibility e.g. running/compiling w/ Travis CI etc.
This will load a reference property. `IRepository`: ```csharp void LoadProperty(TEntity item, Expression property); ``` `IRepositoryAsync`: ```csharp Task LoadProperty(TEntity item, Expression property); ``` `Repository` (.NET Core implementation -- will be different...
Hello, When having multiple connection strings, despite taking the good one at the DbContext initialization, and have the GET actions to work well, some how this Repository system was not...