Search results for query: *

  1. C

    C# Generic collections - Get list of sub level child items from parent object

    Public class viewmodel { public string ID {get;set;} public String name{get;set;} public List<child1>{get;set;} } public class child1 { public string C1ID {get;set;} public String C1name{get;set;} public List<child2>{get;set;} } public...
  2. C

    Azure EventGrid publishing and storing the same into table storage

    Publishing of EventGridEvent and storing the same in the Azure Storage table should be part of one operation method(**tightly coupled**) or segregated further(Loosely coupled) which one is the right scenario ? Apricated if you could share some sample scenario or code snippets. Note: Our...
  3. C

    Azure Event Grid publish EventGridTopicEvent

    HI All, I have scenario where I need to publish "EventGridTopicEvent" data and at the same time I need to store this event information in the Azure Storage Table. I would like to know is there any way to get the information(like T/F) if Publish event successfully done or not(any error), If it...
Back
Top Bottom