CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
CslaModelBinderProvider.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="CslaModelBinderProvider.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Model binder provider.</summary>
7//-----------------------------------------------------------------------
8#if NETSTANDARD2_0 || NET5_0_OR_GREATER || NETCOREAPP3_1
9using Microsoft.AspNetCore.Mvc.ModelBinding;
10
11namespace Csla.Web.Mvc
12{
17 public class CslaModelBinderProvider : IModelBinderProvider
18 {
23 public CslaModelBinderProvider()
24 { }
25
30 public IModelBinder GetBinder(ModelBinderProviderContext context)
31 {
32 if (typeof(Core.IEditableCollection).IsAssignableFrom(context.Metadata.ModelType) ||
33 typeof(IBusinessBase).IsAssignableFrom(context.Metadata.ModelType))
34 return new CslaModelBinder();
35 else
36 return null;
37 }
38 }
39}
40#endif