OData support. :)

This commit is contained in:
David Lebee
2021-02-05 13:06:34 -05:00
parent 764f4a7cd6
commit 7a67866dc3
12 changed files with 259 additions and 2 deletions
@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace PoweredSoft.CQRS.AspNetCore.OData.Abstractions
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public class QueryOdataControllerIgnoreAttribute : Attribute
{
}
}