URF.NET icon indicating copy to clipboard operation
URF.NET copied to clipboard

Unit of Work & Repositories Framework - .NET 4.x

Results 8 URF.NET issues
Sort by recently updated
recently updated
newest added

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. ![capture](https://user-images.githubusercontent.com/6479185/48460581-a8374b80-e7f5-11e8-9ec7-49b49a97b3d6.JPG) ![capture](https://user-images.githubusercontent.com/6479185/48460622-e2a0e880-e7f5-11e8-815e-7c23cde77e4e.JPG) ![capture](https://user-images.githubusercontent.com/6479185/48460637-f2b8c800-e7f5-11e8-8fb2-45f899c4c50e.JPG) ![capture](https://user-images.githubusercontent.com/6479185/48460662-0fed9680-e7f6-11e8-8695-c51b798de93a.JPG)

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.

enhancement
in-flight

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...

enhancement
in-flight

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...