FormCollectionExtend.MVC
1.0.0
MVC FormCollection zur Objekterweiterungsbibliothek.
Einfache Konvertierung von FormCollection in Object.
Klicken Sie hier, um unser UnitTest-Beispiel anzusehen.
Konvertieren Sie FormCollection in ein einzelnes Objekt.
// Arrange
FormCollection Stub = CreateTestData ( ) ;
// Act
TestModel Test = Stub . ToSingleObject < TestModel > ( ) ;
Konvertieren Sie FormCollection in ein einzelnes Objekt mit Mapping Dictionary.
// Arrange
FormCollection Stub = CreateTestDataWithDifferentNaming ( ) ;
Dictionary < string , string > MappingDictionary = CreateMappingDictionary ( ) ;
// Act
TestModel Test = Stub . ToSingleObject < TestModel > ( MappingDictionary ) ;
Konvertieren Sie FormCollection in List
// Arrange FormCollection Stub = CreateTestDataSet ( ) ; string PrimaryKeyName = "Name" ; // Act List < TestModel > Test = Stub . ToListObject < TestModel > ( PrimaryKeyName ) ;
Konvertieren Sie FormCollection in List
// Arrange FormCollection Stub = CreateTestDataSetWithDifferentNaming ( ) ; Dictionary < string , string > MappingDictionary = CreateMappingDictionary ( ) ; string PrimaryKeyName = "Name111" ; // Act List < TestModel > Test = Stub . ToListObject < TestModel > ( MappingDictionary , PrimaryKeyName ) ;
Beispiel:
Dictionary < string , string > CreateMappingDictionary ( ) { // Key.Add( "後端物件屬性", "前端表單欄位Name" ); // Key.Add( "Model Object Property", "Form Field Name" ); Dictionary < string , string > Key = new Dictionary < string , string > ( ) ; Key . Add ( "Name" , "Name111" ) ; Key . Add ( "age" , "age222" ) ; Key . Add ( "PhoneNumber" , "PhoneNumber333" ) ; Key . Add ( "Married" , "Married444" ) ; Key . Add ( "CreatedDateTime" , "CreatedDateTime555" ) ; Key . Add ( "ModifyDateTime" , "ModifyDateTime666" ) ; return Key ; }