Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
MigrageAudienceHash
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hoang Viet Dung
MigrageAudienceHash
Commits
a942f4ba
Commit
a942f4ba
authored
Nov 18, 2022
by
Hoang Viet Dung
🏃
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed distince audiencies in DIC before insert mongo
parent
6eb0e16b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
Program.cs
Program.cs
+6
-3
No files found.
Program.cs
View file @
a942f4ba
...
...
@@ -99,11 +99,14 @@ List<AudienceObject> BuildAudienceObject(List<AnalyticView> analyticViews, int t
var
audienceHash
=
Common
.
GetHash
(
macAddress
);
if
(
dicMacByHash
.
ContainsKey
(
audienceHash
))
{
//append
mac into same audienceHash
//append
new mac into same audienceHash of Dic
var
value
=
dicMacByHash
[
audienceHash
];
if
(!
value
.
Contains
(
macAddress
))
{
value
.
Add
(
macAddress
);
dicMacByHash
[
audienceHash
]
=
value
;
}
}
else
{
dicMacByHash
.
Add
(
audienceHash
,
new
List
<
string
>
{
macAddress
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment