-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UPDATED: Added Directory.Build.props with certain properties and impo…
…rts for working with EntityFrameworkCore. - Created and added Directory.Build.props file with the following content: - Set the NoWarn property to include NU1605 warning. - Set the InheritedDirectoryBuildProps property to get the path of the Directory.Build.props file at the root the project. - Import the inherited Directory.Build.props file. UPDATED: Added a description to Dgmjr.EntityFrameworkCore.Abstractions.csproj. - Added a description to the project file explaining the purpose of the project and listing the interfaces for working with EntityFrameworkCore. FIXED: Removed unnecessary project references from Dgmjr.EntityFrameworkCore.Abstractions.sln. - Removed references to unnecessary project files inn file. UPDATED the README.md file in the Abstractions folder. - Added a title and description to the README.md file, explaining the purpose of the project and listing the interfaces for working with EntityFrameworkCore. UPDATED: Revised the README.md file in the All folder. - Removed unnecessary content from the README.md file. FIXED: Removed unnecessary project references from Dgmjr.EntityFrameworkCore.sln. - Removed references to unnecessary project files in the sln file.
- Loading branch information
Showing
5 changed files
with
133 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<NoWarn>$(NoWarn);NU1605</NoWarn> | ||
<InheritedDirectoryBuildProps>$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))</InheritedDirectoryBuildProps> | ||
</PropertyGroup> | ||
<Import Project="$(InheritedDirectoryBuildProps)" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,34 @@ | ||
--- | ||
title: Dgmjr.EntityFrameworkCore.Abstractions | ||
lastmod: 2023-10-10T08:39:22.ppppZ | ||
date: 2023-10-10T08:39:22.ppppZ | ||
lastmod: 2023-10-10T08:39:22:00.000Z | ||
date: 2023-10-10T08:39:22:00.000Z | ||
license: MIT | ||
slug: Dgmjr.EntityFrameworkCore.Abstractions-readme | ||
version: 0.0.1-Local | ||
authors: | ||
- dgmjr | ||
description: Dgmjr.EntityFrameworkCore.Abstractions Readme #TODO: write description for Dgmjr.EntityFrameworkCore.Abstractions Readme | ||
description: Contains a bunch of "abstractions" for working with EntityFrameworkCore | ||
keywords: | ||
- Dgmjr.EntityFrameworkCore.Abstractions | ||
- dgmjr | ||
- dgmjr-io | ||
type: readme | ||
type: readme | ||
--- | ||
# Dgmjr.EntityFrameworkCore.Abstractions Readme | ||
<!-- TODO: Write the contents of the Dgmjr.EntityFrameworkCore.Abstractions Readme file --> | ||
## Package Description | ||
Package Description | ||
|
||
Built from [commit on branch at ] | ||
(/tree/) | ||
## Getting Started | ||
## Prerequisites | ||
## Installation | ||
## Usage | ||
## Contributing | ||
## Versioning | ||
Built from [commit on branch at ] | ||
(/tree/) | ||
|
||
# DGMJR Entity Framework Core Abstractions | ||
|
||
Contains a bunch of "abstractions" for working with EntityFrameworkCore, specifically: | ||
|
||
## Interfaces for DbContexts | ||
|
||
- [IDbContext](https://github.com/dgmjr-io/EntityFrameworkCore/blob/main/src/Abstractions/IDbContext.cs) | ||
- [IDbSet](https://github.com/dgmjr-io/EntityFrameworkCore/blob/main/src/Abstractions/IDbSet{T}.cs) | ||
- [IHaveADbContext](https://github.com/dgmjr-io/EntityFrameworkCore/blob/main/src/Abstractions/IHaveADbContext.cs) | ||
- [IHaveADbContext{TContext}](https://github.com/dgmjr-io/EntityFrameworkCore/blob/main/src/Abstractions/IHaveADbContext{TContext}.cs) | ||
- [IValidatableDbContext](https://github.com/dgmjr-io/EntityFrameworkCore/blob/main/src/Abstractions/IValidatableDbContext.cs) | ||
- [IValidatableDbContext{TSelf}](https://github.com/dgmjr-io/EntityFrameworkCore/blob/main/src/Abstractions/IValidatableDbContext{TSelf}.cs) | ||
|
||
## Interfaces for Entities | ||
- [IEntity](https://github.com/dgmjr-io/EntityFrameworkCore/blob/main/src/Abstractions/IEntity/IEntity.cs) | ||
- [IEntity{TId}](https://github.com/dgmjr-io/EntityFrameworkCore/blob/main/src/Abstractions/IEntity/IEntity{TId}.cs) | ||
- [IEntity{TSelf,TId}](https://github.com/dgmjr-io/EntityFrameworkCore/blob/main/src/Abstractions/IEntity/IEntity{TSelf,TId}.cs) |
Oops, something went wrong.