Code Monkey home page Code Monkey logo

Comments (3)

penicaudm avatar penicaudm commented on August 18, 2024

Hi @pawp81, I was running into the exact same issue and it turned out to be an empty object being inserted into the properties of the $entity, which caused the error. If you're still experiencing the issue, make sure all your elements aren't null (My problem got solved inserting empty strings)

Cheers

from azurermstoragetable.

pawp81 avatar pawp81 commented on August 18, 2024

@penicaudm Indeed it was empty object. However, rows that I want to insert to Storage Table might have empty columns. How to insert those columns that have values and for empty column insert NULL?

from azurermstoragetable.

penicaudm avatar penicaudm commented on August 18, 2024

I believe you meant insert empty string if value is null for a specified property?

My code looks like this, with the issue being phone numbers were often null.

$properties = @{
            CustomerID                = $CustomerID
            DomainName                = $CustomerName
            Domain                    = $Customerdomain
            PrimaryContactEmail       = $CustomerAgreement.PrimaryContact.Email
            PrimaryContactFirstName   = $CustomerAgreement.PrimaryContact.FirstName
            PrimaryContactLastName    = $CustomerAgreement.PrimaryContact.LastName
            PrimaryContactPhoneNumber = if ($null -ne $CustomerAgreement.PrimaryContact.PhoneNumber) { $CustomerAgreement.PrimaryContact.PhoneNumber } else { "" }
            DateSigned                = (Get-Date -format "dd/MM/yyyy" -Date $CustomerAgreement.DateAgreed)
            Type                      = $CustomerAgreement.Type
        }
        Add-AzTableRow -property $properties -rowkey $rowkey -partitionkey (New-Guid) -table $Table

I also had to insert nearly empty rows, in which case my code is something like:

$properties = @{
            CustomerID                = $CustomerID
            DomainName                = $CustomerName
            Domain                    = $Customerdomain
            PrimaryContactEmail       = ""
            PrimaryContactFirstName   = ""
            PrimaryContactLastName    = ""
            PrimaryContactPhoneNumber = ""
            DateSigned                = "Not yet signed"
            Type                      = $CustomerAgreement.Type
        }

As far as I know, the value of a property cannot be $null, and instead you should use an empty string.

from azurermstoragetable.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.